From 4831034c0be47fd0979ce43b186173bcb6b2011d Mon Sep 17 00:00:00 2001 From: Chayim Date: Sun, 19 Dec 2021 10:39:37 +0200 Subject: Allow ssl_ca_path with rediss:// urls (#1814) --- redis/client.py | 1 + 1 file changed, 1 insertion(+) diff --git a/redis/client.py b/redis/client.py index 3ae133c..ae4fae2 100755 --- a/redis/client.py +++ b/redis/client.py @@ -950,6 +950,7 @@ class Redis(RedisModuleCommands, CoreCommands, SentinelCommands): "ssl_ca_certs": ssl_ca_certs, "ssl_check_hostname": ssl_check_hostname, "ssl_password": ssl_password, + "ssl_ca_path": ssl_ca_path, } ) connection_pool = ConnectionPool(**kwargs) -- cgit v1.2.1