You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description: The sync redis client supports the ssl_ca_path argument to point to a directory of certificate authority certs. However, the async redis client does not support this argument. The workarounds for this are messy or come with their own challenges and the best solution would be for the async and sync clients to match.
The text was updated successfully, but these errors were encountered:
The ssl_ca_certs argument is passed into the cafile argument in context.load_verify_locations(cafile=self.ca_certs, cadata=self.ca_data)which expects a single file, not a directory.
Version:
redis-py 5.0.3
Platform: Ubuntu 22
Description: The sync redis client supports the
ssl_ca_path
argument to point to a directory of certificate authority certs. However, the async redis client does not support this argument. The workarounds for this are messy or come with their own challenges and the best solution would be for the async and sync clients to match.The text was updated successfully, but these errors were encountered: