Merge "Remove workaround for eventlet < 0.27.0"
This commit is contained in:
commit
8d920ce880
@ -20,12 +20,6 @@ An OpenStack Heat server that can run all services.
|
||||
|
||||
import eventlet
|
||||
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
|
||||
|
||||
import sys
|
||||
|
||||
|
@ -20,12 +20,6 @@ An OpenStack ReST API to Heat.
|
||||
|
||||
import eventlet
|
||||
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
|
||||
|
||||
import sys
|
||||
|
||||
|
@ -22,12 +22,6 @@ AMQP RPC to implement them.
|
||||
|
||||
import eventlet
|
||||
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
|
||||
|
||||
import sys
|
||||
|
||||
|
@ -22,12 +22,6 @@ engine.
|
||||
|
||||
import eventlet
|
||||
eventlet.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
|
||||
import threading # noqa
|
||||
orig_threading.current_thread.__globals__['_active'] = threading._active
|
||||
|
||||
import sys
|
||||
|
||||
|
@ -2,7 +2,7 @@ pbr>=3.1.1 # Apache-2.0
|
||||
alembic>=1.8.0 # MIT
|
||||
croniter>=0.3.4 # MIT License
|
||||
cryptography>=2.5 # BSD/Apache-2.0
|
||||
eventlet>=0.18.2 # MIT
|
||||
eventlet>=0.27.0 # MIT
|
||||
keystoneauth1>=3.18.0 # Apache-2.0
|
||||
keystonemiddleware>=5.1.0 # Apache-2.0
|
||||
lxml>=4.5.0 # BSD
|
||||
|
Loading…
Reference in New Issue
Block a user