Drop use of neutron's eventlet utility function

Eventlet is banned from neutron-lib, therefore waiting for this
method to be exported to neutron-lib means waiting for ever. Now
one may argue that copying the method itself could be the way
forward, but that assumes that the neutron-dynamic-routing code
stands a chance to run on Windows. I suppose we can cross that
bridge when we get to it, but as of now, using monkey patching
without params is more than enough.

This is one step of many to make at least one repo neutron free.

Related-blueprint: neutron-lib

Change-Id: I4a2da941c4bdfac3d443eb336191b698efa06af3
This commit is contained in:
Armando Migliaccio 2016-10-14 10:54:55 -07:00
parent 0e5dda2a28
commit f959395b1e
1 changed files with 3 additions and 2 deletions

View File

@ -10,6 +10,7 @@
# License for the specific language governing permissions and limitations
# under the License.
from neutron.common import eventlet_utils
import eventlet
eventlet_utils.monkey_patch()
eventlet.monkey_patch()