Remove workaround for eventlet < 0.27.0

This code worked around a bug in eventlet[1] that has been fixed in
115103d5608cbe8f15df10e27eba1644f5364e95. The fix has been available in
every eventlet release since v0.27.0.

[1] https://github.com/eventlet/eventlet/issues/592

Co-Authored-By: Cyril Roelandt <cyril@redhat.com>
Change-Id: Idb0d7d46b149d600ac34442ad53e4d78713f7f2f
This commit is contained in:
Takashi Kajinami 2024-09-28 14:50:01 +09:00
parent af2bea2dcc
commit d3516167ab
2 changed files with 1 additions and 7 deletions

View File

@ -1,6 +1,6 @@
alembic>=1.8.0
pbr!=2.1.0,>=2.0.0 # Apache-2.0
eventlet!=0.18.3,!=0.20.1,>=0.18.2 # MIT
eventlet>=0.27.0 # MIT
SQLAlchemy>=1.4.0 # MIT
keystonemiddleware>=4.17.0 # Apache-2.0
Routes>=2.3.1 # MIT

View File

@ -26,9 +26,3 @@ import os
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