summaryrefslogtreecommitdiff
path: root/AUTHORS
diff options
context:
space:
mode:
authorGeoffrey Thomas <geofft@twosigma.com>2017-08-25 15:09:06 -0400
committerSergey Shepelev <temotor@gmail.com>2017-08-26 10:58:58 +0300
commitb756447bab51046dfc6f1e0e299cc997ab343701 (patch)
tree368dec63aaad0530e79db46f18759301a726a894 /AUTHORS
parent8b88cbebe5cc0463b7531b59dc255e36b9e498df (diff)
downloadeventlet-b756447bab51046dfc6f1e0e299cc997ab343701.tar.gz
patcher: workaround for monotonic "no suitable implementation"patcher-gethub-401
In some cases -- notably with Python 2.7.13 and the default hub -- the process of importing the hub involves calling code in a module we monkey-patch. This leads to recursive imports: the first eventlet function will call get_hub(), which will try to import the hub, which will call a monkey-patched module, which will call get_hub() and try to import the hub again. To avoid this, make sure the hub is fully imported before monkey-patching anything. https://github.com/eventlet/eventlet/issues/401
Diffstat (limited to 'AUTHORS')
-rw-r--r--AUTHORS1
1 files changed, 1 insertions, 0 deletions
diff --git a/AUTHORS b/AUTHORS
index 790998b..af77252 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -151,3 +151,4 @@ Thanks To
* Feng
* Aayush Kasurde
* Linbing
+* Geoffrey Thomas