summaryrefslogtreecommitdiffstats
path: root/nova/utils.py
diff options
context:
space:
mode:
authorSoren Hansen <soren@linux2go.dk>2011-02-15 17:20:58 +0000
committerTarmac <>2011-02-15 17:20:58 +0000
commit18387e4ff3df86a2024be185a92b428141c23871 (patch)
tree5b6b50bbbc9e947e46dbd07795443296a6f5e3b1 /nova/utils.py
parent2effeaf2905ded6c03116ed05fca4dbb0eabe955 (diff)
parent89ca05c457cb951e91060359493e5f830fe5eeda (diff)
downloadnova-18387e4ff3df86a2024be185a92b428141c23871.tar.gz
nova-18387e4ff3df86a2024be185a92b428141c23871.tar.xz
nova-18387e4ff3df86a2024be185a92b428141c23871.zip
Use eventlet.green.subprocess instead of standard subprocess
Diffstat (limited to 'nova/utils.py')
-rw-r--r--nova/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/utils.py b/nova/utils.py
index 8d7ff1f64..ba71ebf39 100644
--- a/nova/utils.py
+++ b/nova/utils.py
@@ -25,7 +25,6 @@ import inspect
import json
import os
import random
-import subprocess
import socket
import struct
import sys
@@ -36,6 +35,7 @@ import netaddr
from eventlet import event
from eventlet import greenthread
+from eventlet.green import subprocess
from nova import exception
from nova.exception import ProcessExecutionError