Enable eventlet monkey patching for mysql

Change-Id: I14d08374b9c826cd3de94d82ec08f0f22cac6be4
This commit is contained in:
Mike Fedosin 2017-08-08 15:02:40 +03:00
parent 15f5171c25
commit 1f4d972771

View File

@ -26,7 +26,7 @@ import eventlet
from oslo_utils import encodeutils
eventlet.patcher.monkey_patch(all=False, socket=True, time=True,
select=True, thread=True, os=True)
select=True, thread=True, os=True, MySQLdb=True)
# If ../glare/__init__.py exists, add ../ to Python search path, so that
# it will override what happens to be installed in /usr/(local/)lib/python...