Fix a blasted typo in the variable name
This commit is contained in:
parent
6d779a811b
commit
a6bdc281a2
|
@ -164,7 +164,7 @@ class NodeInstance():
|
||||||
# Wait for the VM to migrate so the next VM's free RAM count is accurate (they migrate in serial anyways)
|
# Wait for the VM to migrate so the next VM's free RAM count is accurate (they migrate in serial anyways)
|
||||||
while True:
|
while True:
|
||||||
time.sleep(1)
|
time.sleep(1)
|
||||||
vm_current_state = zkhandler.readdata(self.zk_conn, '/domains/{}/state'.format(domuuid))
|
vm_current_state = zkhandler.readdata(self.zk_conn, '/domains/{}/state'.format(dom_uuid))
|
||||||
if vm_current_state == "start":
|
if vm_current_state == "start":
|
||||||
break
|
break
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue