Merge "Use time.sleep() instead of eventlet.sleep()"

This commit is contained in:
Zuul 2024-12-06 23:02:16 +00:00 committed by Gerrit Code Review
commit 2fcf110f24

View File

@ -28,10 +28,7 @@ import requests
from manilaclient import exceptions
try:
from eventlet import sleep
except ImportError:
from time import sleep # noqa
from time import sleep # noqa
try:
osprofiler_web = importutils.try_import("osprofiler.web")