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: I49bfd9673abc7602b27dc48b8b490daaded2882c
Closes-Bug: #1863021
(cherry picked from commit ec7a5aa)
  • Loading branch information
Corey Bryant authored and ralonsoh committed May 5, 2020
1 parent cca0aeb commit 1e81440
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions neutron/common/eventlet_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,9 @@ def monkey_patch():
# fail on Windows when using pipes due to missing non-blocking IO
# support.
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

0 comments on commit 1e81440

Please sign in to comment.