We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 15b7271 + a9f444a commit 3b4b609Copy full SHA for 3b4b609
nova/utils.py
@@ -29,6 +29,7 @@
29
import tempfile
30
31
import eventlet
32
+from eventlet import tpool
33
from keystoneauth1 import loading as ks_loading
34
import netaddr
35
from openstack import connection
@@ -685,7 +686,7 @@ def context_wrapper(*args, **kwargs):
685
686
687
def tpool_execute(func, *args, **kwargs):
688
"""Run func in a native thread"""
- eventlet.tpool.execute(func, *args, **kwargs)
689
+ tpool.execute(func, *args, **kwargs)
690
691
692
def is_none_string(val):
0 commit comments