Fix a blasted typo in the variable name

This commit is contained in:
Joshua Boniface 2018-07-17 00:38:55 -04:00
parent 6d779a811b
commit a6bdc281a2
1 changed files with 1 additions and 1 deletions

View File

@ -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)
while True:
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":
break