Fix eventlet imports issue

With Ubuntu python package 2.7.12-1ubuntu0~16.04.3 and
evetlet < 0.22.0 there is some issue with eventlet monkey_patching.
This commit adds workaround solution ported from eventlet patch
b756447bab

Change-Id: Ia381c98116765903bf2652acd175251233df4e54
Closes-Bug: #1745013
This commit is contained in:
Sławek Kapłoński 2018-01-25 12:41:38 +01:00
parent 8ee41a081a
commit 04efb3bca3
1 changed files with 6 additions and 0 deletions

View File

@ -20,6 +20,12 @@ from oslo_utils import importutils
def monkey_patch():
# NOTE(slaweq): to workaround issue with import cycles in
# eventlet < 0.22.0;
# This issue is fixed in eventlet with patch
# https://github.com/eventlet/eventlet/commit/b756447bab51046dfc6f1e0e299cc997ab343701
# For details please check https://bugs.launchpad.net/neutron/+bug/1745013
eventlet.hubs.get_hub()
eventlet.monkey_patch()
if os.name != 'nt':
p_c_e = importutils.import_module('pyroute2.config.asyncio')