summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierre de Lacroix <pierre@pdelacroix.com>2021-03-03 18:37:48 +0100
committerPierre de Lacroix <pierre@pdelacroix.com>2021-03-03 18:37:48 +0100
commit01c79449177f3a6473b3522d6a648f64540922c9 (patch)
tree6e2b5d24d477e4d952fa99a10d9760059cdefa88
parentregister interface tests for client and lowlevel (diff)
hotfix to squash
-rw-r--r--lib/polyjuice/client.ex8
1 files changed, 7 insertions, 1 deletions
diff --git a/lib/polyjuice/client.ex b/lib/polyjuice/client.ex
index 54e2670..f027fd0 100644
--- a/lib/polyjuice/client.ex
+++ b/lib/polyjuice/client.ex
@@ -811,7 +811,13 @@ defmodule Polyjuice.Client do
DynamicSupervisor.start_child(
supervisor_name,
- sync_child_spec(client.base_url, client.id, client.pid, client.opts)
+ sync_child_spec(
+ client.base_url,
+ client.id,
+ client.pid,
+ client.hackney_opts,
+ client.opts
+ )
)
end
end