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: I5b00ee328f83cec8375ad1538be3a16059af08a3
Closes-Bug: #1863021
(cherry picked from commit 0b78dad)
  • Loading branch information
Corey Bryant authored and voyageur committed Jan 13, 2021
1 parent 90305b4 commit ba57ca7
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions networking_sfc/services/sfc/agent/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,8 @@
from neutron.common import eventlet_utils
eventlet_utils.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 # noqa pylint: disable=wrong-import-position
import threading # noqa pylint: disable=wrong-import-position,wrong-import-order
orig_threading.current_thread.__globals__['_active'] = threading._active

0 comments on commit ba57ca7

Please sign in to comment.