small clarification of ssl_cert_reqs How Has This Been Tested? [Describe the tests you ran to verify your changes] Accepted Risk [Any know risks or failure modes to point out to reviewers] Related Issue(s) [If applicable, link to the issue(s) this PR addresses] Checklist: All of the ...
ConfigurationError: `ssl_cert_reqs` is not ssl.CERT_NONE and no system CA certificates could be loaded. `ssl_ca_certs` is required. # Enable MongoDB Enterprise repo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 7F0CEB10 ec...
I have a code snippet that can reliably reproduce it on multiple machines, and a full crash dump. threads = [] for _ in range(NUM_THREADS): t = SocketThread('wss://echo.websocket.org/', ssl_opt={'cert_reqs': 0}) t.start() threads.append(t) sleep(4) for t in threads: t.k...