From b2d769cb92dce5be26288c8e389491cf554b5703 Mon Sep 17 00:00:00 2001 From: Ewan Mellor Date: Sun, 25 Jul 2010 15:08:48 +0100 Subject: Removed creation of process pools. We don't use these any more now that we're using process.simple_execute. --- nova/virt/libvirt_conn.py | 1 - nova/virt/xenapi.py | 1 - 2 files changed, 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) \ -- cgit