Get right state

This commit is contained in:
Joshua Boniface 2018-06-17 01:58:17 -04:00
parent 617902ede0
commit a9635aac16
1 changed files with 2 additions and 2 deletions

View File

@ -331,8 +331,8 @@ def fenceNode(node_name, zk):
current_hypervisor = zk.get('/domains/{}/hypervisor'.format(dom_uuid))[0].decode('ascii') current_hypervisor = zk.get('/domains/{}/hypervisor'.format(dom_uuid))[0].decode('ascii')
for hypervisor in hypervisor_list: for hypervisor in hypervisor_list:
print(hypervisor) print(hypervisor)
state = zk.get('/nodes/{}/state'.format(hypervisor))[0].decode('ascii') state = zk.get('/nodes/{}/domainstate'.format(hypervisor))[0].decode('ascii')
if state != 'start': if state != 'ready':
continue continue
memfree = int(zk.get('/nodes/{}/memfree'.format(hypervisor))[0].decode('ascii')) memfree = int(zk.get('/nodes/{}/memfree'.format(hypervisor))[0].decode('ascii'))