summaryrefslogtreecommitdiff
path: root/heat/cmd/api_cfn.py
diff options
context:
space:
mode:
Diffstat (limited to 'heat/cmd/api_cfn.py')
-rw-r--r--heat/cmd/api_cfn.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/heat/cmd/api_cfn.py b/heat/cmd/api_cfn.py
index bc7cd5b02..2a44605e5 100644
--- a/heat/cmd/api_cfn.py
+++ b/heat/cmd/api_cfn.py
@@ -22,6 +22,12 @@ AMQP RPC to implement them.
import eventlet
eventlet.monkey_patch(os=False)
+# Monkey patch the original current_thread to use the up-to-date _active
+# global variable. See https://bugs.launchpad.net/bugs/1863021 and
+# https://github.com/eventlet/eventlet/issues/592
+import __original_module_threading as orig_threading
+import threading # noqa
+orig_threading.current_thread.__globals__['_active'] = threading._active
import sys