Monkey patch original current_thread _active

Monkey patch the original current_thread to use the up-to-date _active
global variable. This solution is based on that documented at:
https://github.com/eventlet/eventlet/issues/592

Change-Id: Icc2277b72f6f8f7812be22c43bbc281334aa2373
Closes-Bug: #1863021
(cherry picked from commit b83ce33831)
This commit is contained in:
Corey Bryant 2020-05-04 14:06:38 -04:00
parent 437e04dd92
commit b52454d1d0
1 changed files with 6 additions and 0 deletions

View File

@ -257,6 +257,12 @@ def initialize_if_enabled(conf):
def _main():
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
import threading # noqa
orig_threading.current_thread.__globals__['_active'] = threading._active
from oslo_config import cfg