don't overwrite passed pool option in http clients
authorAlexander Strizhakov <alex.strizhakov@gmail.com>
Tue, 1 Sep 2020 08:30:56 +0000 (11:30 +0300)
committerAlexander Strizhakov <alex.strizhakov@gmail.com>
Wed, 2 Sep 2020 06:04:23 +0000 (09:04 +0300)
lib/pleroma/http/ex_aws.ex
lib/pleroma/http/tzdata.ex

index 2fe8beafc79777cb1e2ab2935f4d8c67c4929b81..c3f335c7326cc62471d08773ba70e894f6c81465 100644 (file)
@@ -11,7 +11,7 @@ defmodule Pleroma.HTTP.ExAws do
 
   @impl true
   def request(method, url, body \\ "", headers \\ [], http_opts \\ []) do
-    http_opts = Keyword.put(http_opts, :adapter, pool: :upload)
+    http_opts = Keyword.put_new(http_opts, :adapter, pool: :upload)
 
     case HTTP.request(method, url, body, headers, http_opts) do
       {:ok, env} ->
index 7dd3352ff14482745df0db6b37a6a8570b6bbe4f..356799aabe7bc64d44b308ddec8cd6cdb642b03b 100644 (file)
@@ -11,7 +11,7 @@ defmodule Pleroma.HTTP.Tzdata do
 
   @impl true
   def get(url, headers, options) do
-    options = Keyword.put(options, :adapter, pool: :upload)
+    options = Keyword.put_new(options, :adapter, pool: :upload)
 
     with {:ok, %Tesla.Env{} = env} <- HTTP.get(url, headers, options) do
       {:ok, {env.status, env.headers, env.body}}
@@ -20,7 +20,7 @@ defmodule Pleroma.HTTP.Tzdata do
 
   @impl true
   def head(url, headers, options) do
-    options = Keyword.put(options, :adapter, pool: :upload)
+    options = Keyword.put_new(options, :adapter, pool: :upload)
 
     with {:ok, %Tesla.Env{} = env} <- HTTP.head(url, headers, options) do
       {:ok, {env.status, env.headers}}