summaryrefslogtreecommitdiff
path: root/heat/cmd/engine.py
diff options
context:
space:
mode:
Diffstat (limited to 'heat/cmd/engine.py')
-rw-r--r--heat/cmd/engine.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/heat/cmd/engine.py b/heat/cmd/engine.py
index f30081d7e..b969a4c22 100644
--- a/heat/cmd/engine.py
+++ b/heat/cmd/engine.py
@@ -22,6 +22,12 @@ engine.
import eventlet
eventlet.monkey_patch()
+# 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