Update comments, remove solved TODO

This commit is contained in:
Mark Felder 2024-08-28 19:52:29 -04:00
parent 0bf82a1745
commit 8ab4dd20df
3 changed files with 2 additions and 3 deletions

View file

@ -120,7 +120,6 @@ defmodule Pleroma.HTTP.AdapterHelper do
end end
end end
# TODO add Finch support once we have an AdapterHelper for it
@spec can_stream? :: bool() @spec can_stream? :: bool()
def can_stream? do def can_stream? do
case Application.get_env(:tesla, :adapter) do case Application.get_env(:tesla, :adapter) do

View file

@ -23,7 +23,7 @@ defmodule Pleroma.HTTP.AdapterHelper.Finch do
|> maybe_stream() |> maybe_stream()
end end
# Tesla Finch adapter uses response: :stream # Finch uses [response: :stream]
defp maybe_stream(opts) do defp maybe_stream(opts) do
case Keyword.pop(opts, :stream, nil) do case Keyword.pop(opts, :stream, nil) do
{true, opts} -> Keyword.put(opts, :response, :stream) {true, opts} -> Keyword.put(opts, :response, :stream)

View file

@ -48,7 +48,7 @@ defmodule Pleroma.HTTP.AdapterHelper.Gun do
Keyword.put(opts, :timeout, recv_timeout) Keyword.put(opts, :timeout, recv_timeout)
end end
# Tesla Gun adapter uses body_as: :stream # Gun uses [body_as: :stream]
defp maybe_stream(opts) do defp maybe_stream(opts) do
case Keyword.pop(opts, :stream, nil) do case Keyword.pop(opts, :stream, nil) do
{true, opts} -> Keyword.put(opts, :body_as, :stream) {true, opts} -> Keyword.put(opts, :body_as, :stream)