summaryrefslogtreecommitdiff
path: root/redis/client.py
diff options
context:
space:
mode:
Diffstat (limited to 'redis/client.py')
-rwxr-xr-xredis/client.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/redis/client.py b/redis/client.py
index 5116482..0984a7c 100755
--- a/redis/client.py
+++ b/redis/client.py
@@ -878,6 +878,7 @@ class Redis(RedisModuleCommands, CoreCommands, SentinelCommands):
ssl_ca_path=None,
ssl_check_hostname=False,
ssl_password=None,
+ ssl_validate_ocsp=False,
max_connections=None,
single_connection_client=False,
health_check_interval=0,
@@ -956,6 +957,7 @@ class Redis(RedisModuleCommands, CoreCommands, SentinelCommands):
"ssl_check_hostname": ssl_check_hostname,
"ssl_password": ssl_password,
"ssl_ca_path": ssl_ca_path,
+ "ssl_validate_ocsp": ssl_validate_ocsp,
}
)
connection_pool = ConnectionPool(**kwargs)