This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author christian.heimes
Recipients christian.heimes, ned.deily, nneonneo, ronaldoussoren, tacocat
Date 2020-10-23.09:36:08
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1603445768.74.0.81974951077.issue33090@roundup.psfhosted.org>
In-reply-to
Content
The demo script uses the same connection socket in two threads. Neither OpenSSL nor Python guarantee that a single SSLSocket object can be used by multiple threads. https://www.openssl.org/blog/blog/2017/02/21/threads/ contains more information about thread safety.

tl;dr SSLObject and SSLSocket cannot be safely used by multiple threads at the same time. SSLContext can be shared across multiple threads. However it's not safe to reconfigure a context once it's attached to a connection. Only getters, wrap_*(), and load_verify_locations() are safe.
History
Date User Action Args
2020-10-23 09:36:08christian.heimessetrecipients: + christian.heimes, ronaldoussoren, nneonneo, ned.deily, tacocat
2020-10-23 09:36:08christian.heimessetmessageid: <1603445768.74.0.81974951077.issue33090@roundup.psfhosted.org>
2020-10-23 09:36:08christian.heimeslinkissue33090 messages
2020-10-23 09:36:08christian.heimescreate