Add state set

This commit is contained in:
Joshua Boniface 2018-05-31 23:48:12 -04:00
parent c177f977e4
commit 365ad6709a
1 changed files with 1 additions and 1 deletions

View File

@ -64,11 +64,11 @@ class NodeInstance(threading.Thread):
if conn == None:
print('Failed to open connection to %s' % libvirt_name)
exit(1)
# Gather data about hypervisor
self.name = conn.getHostname()
self.cpucount = conn.getCPUMap()[0]
self.state = 'start'
self.zk.set(self.zkey + '/state', 'start'.encode('ascii'))
self.zk.set(self.zkey + '/cpucount', str(self.cpucount).encode('ascii'))
print("Node hostname: %s" % self.name)