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
Remove the ssl.wrap_socket() function, deprecated in Python 3.7: instead, create a ssl.SSLContext object and call its ssl.SSLContext.wrap_socket method. Any package that still uses ssl.wrap_socket() is broken and insecure.
As per Source: https://docs.python.org/3.12/whatsnew/3.12.html#ssl :
change lines 23-24 in IOTSocketClient.py from
to
Fixed this for me.
Thanks.
The text was updated successfully, but these errors were encountered: