From a6bdc281a2f0d7dab9ef8dad17fbdb8dadf03961 Mon Sep 17 00:00:00 2001 From: Joshua Boniface Date: Tue, 17 Jul 2018 00:38:55 -0400 Subject: [PATCH] Fix a blasted typo in the variable name --- pvcd/NodeInstance.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pvcd/NodeInstance.py b/pvcd/NodeInstance.py index 8ae59a31..f23b1d8f 100644 --- a/pvcd/NodeInstance.py +++ b/pvcd/NodeInstance.py @@ -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