aboutsummaryrefslogtreecommitdiff
path: root/lib/pleroma/http/ex_aws.ex
diff options
context:
space:
mode:
authorAlexander Strizhakov <alex.strizhakov@gmail.com>2020-09-07 16:57:42 +0300
committerAlexander Strizhakov <alex.strizhakov@gmail.com>2020-09-07 19:59:17 +0300
commit696bf09433aa7f33cf580c71cb7f1f3367d4c124 (patch)
treeb5d51e9819ce3964916a2ce8aee78df6a50cbeee /lib/pleroma/http/ex_aws.ex
parent8a3d43044a06488545490a89e29c8349d914f164 (diff)
downloadpleroma-696bf09433aa7f33cf580c71cb7f1f3367d4c124.tar.gz
passing adapter options directly without adapter key
Diffstat (limited to 'lib/pleroma/http/ex_aws.ex')
-rw-r--r--lib/pleroma/http/ex_aws.ex2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pleroma/http/ex_aws.ex b/lib/pleroma/http/ex_aws.ex
index c3f335c73..5cac3532f 100644
--- a/lib/pleroma/http/ex_aws.ex
+++ b/lib/pleroma/http/ex_aws.ex
@@ -11,7 +11,7 @@ defmodule Pleroma.HTTP.ExAws do
@impl true
def request(method, url, body \\ "", headers \\ [], http_opts \\ []) do
- http_opts = Keyword.put_new(http_opts, :adapter, pool: :upload)
+ http_opts = Keyword.put_new(http_opts, :pool, :upload)
case HTTP.request(method, url, body, headers, http_opts) do
{:ok, env} ->