monkey patch bugfix for eventlet >=0.20.1

Change-Id: I84d9c901b82c2b68ecb760ac4355bf2e0662f82e
Signed-off-by: Zhijiang Hu <hu.zhijiang@zte.com.cn>
This commit is contained in:
Zhijiang Hu 2017-11-08 23:45:46 -05:00
parent aa25f1096c
commit 9bb8cd9da1
1 changed files with 2 additions and 1 deletions

View File

@ -37,7 +37,8 @@ from oslo_service import systemd
# Monkey patch socket, time, select, threads
eventlet.patcher.monkey_patch(all=False, socket=True, time=True,
select=True, thread=True, os=True)
select=True, thread=True, os=True,
subprocess=True)
# If ../glance/__init__.py exists, add ../ to Python search path, so that
# it will override what happens to be installed in /usr/(local/)lib/python...