Merge "Fix eventlet imports issue" into stable/ocata

This commit is contained in:
Zuul 2018-06-06 23:41:21 +00:00 committed by Gerrit Code Review
commit 6025fbe7a2
1 changed files with 7 additions and 0 deletions

View File

@ -30,6 +30,13 @@ def monkey_patch():
# eventletmonkey_patch-breaks
eventlet.monkey_patch(os=False, thread=False)
else:
# 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()
p_c_e = importutils.import_module('pyroute2.config.eventlet')
p_c_e.eventlet_config()