diff options
author | Sergey Shepelev <temotor@gmail.com> | 2018-01-16 11:05:48 +0300 |
---|---|---|
committer | Sergey Shepelev <temotor@gmail.com> | 2023-01-18 03:47:40 +0300 |
commit | b034167818e6fd13a45dca2853afc20d70976ea2 (patch) | |
tree | db2c4d68e2a85f35947eb1aa0b134961731aeac8 | |
parent | 60a99c86e089731ab8431013fe8d57fdbad52c9a (diff) | |
download | eventlet-b034167818e6fd13a45dca2853afc20d70976ea2.tar.gz |
green.http: https connections were blocking
fixes https://github.com/eventlet/eventlet/issues/457
-rw-r--r-- | eventlet/green/http/client.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eventlet/green/http/client.py b/eventlet/green/http/client.py index e4bd2ad..744a074 100644 --- a/eventlet/green/http/client.py +++ b/eventlet/green/http/client.py @@ -1443,7 +1443,7 @@ class HTTPConnection: raise try: - import ssl + from eventlet.green import ssl except ImportError: pass else: |