Skip to content

Commit

Permalink
Fix bug in _get_client
Browse files Browse the repository at this point in the history
  • Loading branch information
uglide committed Oct 22, 2024
1 parent 78f595a commit 2cf798f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ def _get_client(
get_tls_certificates()
)
kwargs["ssl_cert_reqs"] = "required"
kwargs["port"] = redis_tls_url.port
kwargs["port"] = urlparse(redis_tls_url).port
kwargs["connection_class"] = connection_class
url_options.update(kwargs)
pool = redis.ConnectionPool(**url_options)
Expand Down

0 comments on commit 2cf798f

Please sign in to comment.