Skip to content

Commit

Permalink
Monkey patch original current_thread _active
Browse files Browse the repository at this point in the history
Monkey patch the original current_thread to use the up-to-date _active
global variable. This solution is based on that documented at:
eventlet/eventlet#592

Change-Id: I0540923755ac3969b584eeba2e19c037a7f2c261
Story: 2007614
(cherry picked from commit 8fd1721)
  • Loading branch information
Corey Bryant committed May 12, 2020
1 parent bceca61 commit 2e6ae73
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 0 deletions.
6 changes: 6 additions & 0 deletions heat/cmd/all.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,12 @@

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

Expand Down
6 changes: 6 additions & 0 deletions heat/cmd/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,12 @@

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

Expand Down
6 changes: 6 additions & 0 deletions heat/cmd/api_cfn.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,12 @@

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

Expand Down
6 changes: 6 additions & 0 deletions heat/cmd/engine.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,12 @@

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

Expand Down

0 comments on commit 2e6ae73

Please sign in to comment.