Commit 460d78a7 authored by Jason Madden's avatar Jason Madden

Add reference to the #1016 in the warning text. [skip ci]

parent bdc0302e
...@@ -482,7 +482,8 @@ def patch_ssl(_warnings=None): ...@@ -482,7 +482,8 @@ def patch_ssl(_warnings=None):
if 'ssl' in sys.modules and hasattr(sys.modules['ssl'], 'SSLContext'): if 'ssl' in sys.modules and hasattr(sys.modules['ssl'], 'SSLContext'):
_queue_warning('Monkey-patching ssl after ssl has already been imported ' _queue_warning('Monkey-patching ssl after ssl has already been imported '
'may lead to errors, including RecursionError on Python 3.6. ' 'may lead to errors, including RecursionError on Python 3.6. '
'Please monkey-patch earlier.', 'Please monkey-patch earlier. '
'See https://github.com/gevent/gevent/issues/1016',
_warnings) _warnings)
patch_module('ssl', _warnings=_warnings) patch_module('ssl', _warnings=_warnings)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment