Fix Redis tests by removing SSL verification

This commit is contained in:
Théophile Diot 2024-01-23 09:20:14 +01:00
parent 6f43ca6637
commit 43410beb96
No known key found for this signature in database
GPG key ID: 248FEA4BAE400D06

View file

@ -104,6 +104,7 @@ try:
password=getenv("REDIS_PASSWORD", None) or None,
ssl=redis_ssl,
socket_timeout=1,
ssl_cert_reqs="none",
)
if not redis_client.ping():