[issue41597] Fatal Error on SSL Transport - sslv3 alert bad record mac

Christian Heimes report at bugs.python.org
Thu Aug 20 04:50:43 EDT 2020


Christian Heimes <lists at cheimes.de> added the comment:

This looks like a bug in the websocket package.

You cannot share an SSLSocket across threads safely without locking. I/O operations on a shared resource (file, socket, SSLSocket) are generally not thread safe. Locking has to be implemented in the layer that uses the resource, in your case websocket package.

Please report the issue with websocket.

----------

_______________________________________
Python tracker <report at bugs.python.org>
<https://bugs.python.org/issue41597>
_______________________________________


More information about the Python-bugs-list mailing list