Skip to content
Snippets Groups Projects
Commit 50ba4ba2 authored by kaniini's avatar kaniini
Browse files

http: connection: merge hackney option lists instead of concatenating them

this ensures the right pools are used
parent 2a83c0ba
No related branches found
No related tags found
No related merge requests found
......@@ -31,6 +31,6 @@ def new(opts \\ []) do
#
defp hackney_options(opts) do
options = Keyword.get(opts, :adapter, [])
@hackney_options ++ options
Keyword.merge(@hackney_options, options)
end
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment