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
Fix RedisCluster ssl_check_hostname not set to connections. For SSL verification with ssl_cert_reqs="none", check_hostname is set to False (redis#3637)
* Fix SSL verification with ssl_cert_reqs=none and ssl_check_hostname=True
* Add ssl_check_hostname to REDIS_ALLOWED_KEYS and fix default value in RedisSSLContext
Copy file name to clipboardExpand all lines: CHANGES
+1
Original file line number
Diff line number
Diff line change
@@ -71,6 +71,7 @@
71
71
* Close Unix sockets if the connection attempt fails. This prevents `ResourceWarning`s. (#3314)
72
72
* Close SSL sockets if the connection attempt fails, or if validations fail. (#3317)
73
73
* Eliminate mutable default arguments in the `redis.commands.core.Script` class. (#3332)
74
+
* Fix SSL verification with `ssl_cert_reqs="none"` and `ssl_check_hostname=True` by automatically setting `check_hostname=False` when `verify_mode=ssl.CERT_NONE` (#3635)
74
75
* Allow newer versions of PyJWT as dependency. (#3630)
0 commit comments