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: I61e5e270bf66b0355da3282c19cbc9fd42c4090b
Closes-Bug: #1863021
  • Loading branch information
Corey Bryant authored and lingxiankong committed Jul 18, 2020
1 parent 828e873 commit 56bb6f3
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions trove/cmd/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,9 @@
if not os.environ.get('NO_EVENTLET_MONKEYPATCH'):
import eventlet
eventlet.monkey_patch(all=True)
# 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 # noqa
import threading # noqa
orig_threading.current_thread.__globals__['_active'] = threading._active

0 comments on commit 56bb6f3

Please sign in to comment.