Skip to content
This repository has been archived by the owner on May 18, 2024. It is now read-only.

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: I93ce7f11dcd8c1f01616580b65e5e581b775e8c5
Story: 2007614
(cherry picked from commit 9c83e69)
  • Loading branch information
Corey Bryant committed May 6, 2020
1 parent 3db9f75 commit a6ee522
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions sahara/utils/patches.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,12 @@ def eventlet_monkey_patch():
monkey_patch multiple times.
"""
eventlet.monkey_patch(**EVENTLET_MONKEY_PATCH_MODULES)
# 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


def eventlet_import_monkey_patched(module):
Expand Down

0 comments on commit a6ee522

Please sign in to comment.