We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
RedisCluster.ConfigManager
1 parent aa85a2e commit 0afc2bbCopy full SHA for 0afc2bb
lib/nebulex_redis_adapter/redis_cluster/config_manager.ex
@@ -232,6 +232,11 @@ defmodule NebulexRedisAdapter.RedisCluster.ConfigManager do
232
end
233
234
defp connect(conn_opts) do
235
+ conn_opts =
236
+ conn_opts
237
+ |> Keyword.delete(:sync_connect)
238
+ |> Keyword.delete(:exit_on_disconnection)
239
+
240
case Keyword.pop(conn_opts, :url) do
241
{nil, conn_opts} ->
242
with {:ok, conn} <- Redix.start_link(conn_opts) do
0 commit comments