Drop workaround for eventlet < 0.36.0

Use of the incorrect exception[1] was fixed in 0.36.0[2].

[1] https://github.com/eventlet/eventlet/issues/692
[2] caf9f9983a

Change-Id: I50e74a401b66d4239468dae71e01c32caa9a8234
This commit is contained in:
Takashi Kajinami
2024-09-28 00:09:08 +09:00
parent 3ae0695629
commit 44a679a0ad
2 changed files with 1 additions and 7 deletions

View File

@@ -14,11 +14,5 @@
# License for the specific language governing permissions and limitations
# under the License.
import eventlet
from eventlet.green import ssl
import socket
eventlet.monkey_patch(os=False)
# Work around the eventlet issue that impacts redis using TLS.
# https://github.com/eventlet/eventlet/issues/692
ssl.timeout_exc = socket.timeout

View File

@@ -2,7 +2,7 @@
# date but we do not test them so no guarantee of having them all correct. If
# you find any incorrect lower bounds, let us know or propose a fix.
alembic>=1.8.0 # MIT
eventlet>=0.27.0 # MIT
eventlet>=0.36.0 # MIT
Flask!=0.11,>=0.10 # BSD
greenlet>=0.4.15 # MIT
Jinja2>=2.10 # BSD License (3 clause)