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
ssl.PROTOCOL_SSLv23 is an alias of ssl.PROTOCOL_TLS and has been deprecated since Python 3.6.
Further, ssl.PROTOCOL_TLS is deprecated since Python 3.10; the generic TLS protocol constant is deprecated in favor of ssl.PROTOCOL_TLS_CLIENT and ssl.PROTOCOL_TLS_SERVER.
In
kafka/conn.py
, there is the following statementssl.PROTOCOL_SSLv23
is an alias ofssl.PROTOCOL_TLS
and has been deprecated since Python 3.6.Further,
ssl.PROTOCOL_TLS
is deprecated since Python 3.10; the generic TLS protocol constant is deprecated in favor ofssl.PROTOCOL_TLS_CLIENT
andssl.PROTOCOL_TLS_SERVER
.Further information is available below
https://docs.python.org/3/library/ssl.html#ssl.PROTOCOL_TLS
The text was updated successfully, but these errors were encountered: