From 48a5a44db433b0118f56c46cf0e6f67fd394ad01 Mon Sep 17 00:00:00 2001 From: Joshua Boniface Date: Mon, 11 Jun 2018 22:47:53 -0400 Subject: [PATCH] Add back in the wait to avoid floods on stderr --- VMInstance.py | 1 + 1 file changed, 1 insertion(+) diff --git a/VMInstance.py b/VMInstance.py index fdad01fd..30caf75f 100644 --- a/VMInstance.py +++ b/VMInstance.py @@ -194,6 +194,7 @@ class VMInstance: self.inreceive = True ansiiprint.echo('Receiving migration', '{}:'.format(self.domuuid), 'i') while True: + time.sleep(0.5) self.state = self.zk.get('/domains/{}/state'.format(self.domuuid))[0].decode('ascii') self.dom = self.lookupByUUID(self.domuuid)