summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEwan Mellor <ewan.mellor@citrix.com>2010-07-25 15:08:48 +0100
committerEwan Mellor <ewan.mellor@citrix.com>2010-07-25 15:08:48 +0100
commitb2d769cb92dce5be26288c8e389491cf554b5703 (patch)
treea79cf75c3ea74d324d9e25f448db6016bb388b28
parent4c536de1732c531bfb87018826a92de2744e8d1a (diff)
downloadnova-b2d769cb92dce5be26288c8e389491cf554b5703.tar.gz
nova-b2d769cb92dce5be26288c8e389491cf554b5703.tar.xz
nova-b2d769cb92dce5be26288c8e389491cf554b5703.zip
Removed creation of process pools. We don't use these any more now that
we're using process.simple_execute.
-rw-r--r--nova/virt/libvirt_conn.py1
-rw-r--r--nova/virt/xenapi.py1
2 files changed, 0 insertions, 2 deletions
diff --git a/nova/virt/libvirt_conn.py b/nova/virt/libvirt_conn.py
index 39ed9bd78..30a182057 100644
--- a/nova/virt/libvirt_conn.py
+++ b/nova/virt/libvirt_conn.py
@@ -68,7 +68,6 @@ class LibvirtConnection(object):
self._conn = libvirt.openReadOnly('qemu:///system')
else:
self._conn = libvirt.openAuth('qemu:///system', auth, 0)
- self._pool = process.ProcessPool()
def list_instances(self):
diff --git a/nova/virt/xenapi.py b/nova/virt/xenapi.py
index 46ff9c5e4..58fcd79c5 100644
--- a/nova/virt/xenapi.py
+++ b/nova/virt/xenapi.py
@@ -48,7 +48,6 @@ class XenAPIConnection(object):
def __init__(self, url, user, pw):
self._conn = XenAPI.Session(url)
self._conn.login_with_password(user, pw)
- self._pool = process.Pool()
def list_instances(self):
result = [self._conn.xenapi.VM.get_name_label(vm) \