Add a short delay before managing state
This commit is contained in:
parent
d0c8f006c6
commit
202b8f41af
|
@ -236,6 +236,9 @@ class VMInstance:
|
||||||
# Main function to manage a VM (taking only self)
|
# Main function to manage a VM (taking only self)
|
||||||
#
|
#
|
||||||
def manage_vm_state(self):
|
def manage_vm_state(self):
|
||||||
|
# Give ourselves a bit of leeway time
|
||||||
|
time.sleep(0.2)
|
||||||
|
|
||||||
# Get the current values from zookeeper
|
# Get the current values from zookeeper
|
||||||
self.state = self.zk.get('/domains/{}/state'.format(self.domuuid))[0].decode('ascii')
|
self.state = self.zk.get('/domains/{}/state'.format(self.domuuid))[0].decode('ascii')
|
||||||
self.hypervisor = self.zk.get('/domains/{}/hypervisor'.format(self.domuuid))[0].decode('ascii')
|
self.hypervisor = self.zk.get('/domains/{}/hypervisor'.format(self.domuuid))[0].decode('ascii')
|
||||||
|
|
Loading…
Reference in New Issue