From 452681b8121f685e74312a5a1f7ff7980982515a Mon Sep 17 00:00:00 2001 From: Joshua Boniface Date: Wed, 6 Jun 2018 21:37:36 -0400 Subject: [PATCH] Correct name to confirm --- NodeInstance.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NodeInstance.py b/NodeInstance.py index c41b8cb0..cfd66dc0 100644 --- a/NodeInstance.py +++ b/NodeInstance.py @@ -109,7 +109,7 @@ class NodeInstance(): transaction.set_data('/domains/{}/state'.format(dom_uuid), 'shutdown'.encode('ascii')) transaction.commit() else: - print('>>> Moving VM "{}" to hypervisor "{}".'.format(dom_uuid, target_hypervisor)) + print('>>> Migrating VM "{}" to hypervisor "{}".'.format(dom_uuid, target_hypervisor)) transaction = self.zk.transaction() transaction.set_data('/domains/{}/state'.format(dom_uuid), 'migrate'.encode('ascii')) transaction.set_data('/domains/{}/hypervisor'.format(dom_uuid), target_hypervisor.encode('ascii'))