Forgot self
This commit is contained in:
parent
3cb05f1c48
commit
fd7e240891
|
@ -97,9 +97,9 @@ class NodeInstance(threading.Thread):
|
||||||
dom = conn.getDomainByUUID(domain)
|
dom = conn.getDomainByUUID(domain)
|
||||||
state = dom.state()
|
state = dom.state()
|
||||||
if state != libvirt.VIR_DOMAIN_RUNNING:
|
if state != libvirt.VIR_DOMAIN_RUNNING:
|
||||||
domain_list.remove(domain)
|
self.domain_list.remove(domain)
|
||||||
except:
|
except:
|
||||||
domain_list.remove(domain)
|
self.domain_list.remove(domain)
|
||||||
|
|
||||||
# Set our information in zookeeper
|
# Set our information in zookeeper
|
||||||
self.memfree = conn.getFreeMemory()
|
self.memfree = conn.getFreeMemory()
|
||||||
|
|
Loading…
Reference in New Issue