Skip to content

Commit

Permalink
fixed broken test
Browse files Browse the repository at this point in the history
Signed-off-by: ahmedsobeh <[email protected]>
  • Loading branch information
ahmedsobeh committed Jun 30, 2024
1 parent d146eb6 commit b0f10d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion valkey/asyncio/cluster.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ def from_url(cls, url: str, **kwargs: Any) -> "ValkeyCluster":
:class:`~valkey.asyncio.connection.Connection` when created.
In the case of conflicting arguments, querystring arguments are used.
"""
kwargs.update(parse_url(url, False))
kwargs.update(parse_url(url, True))
if kwargs.pop("connection_class", None) is SSLConnection:
kwargs["ssl"] = True
return cls(**kwargs)
Expand Down

0 comments on commit b0f10d3

Please sign in to comment.