Forgot some critical shit
This commit is contained in:
parent
4c59fe03aa
commit
3648238cef
|
@ -24,11 +24,13 @@ class VMInstance:
|
|||
# Watch for changes to the hypervisor field in Zookeeper
|
||||
@zk.DataWatch(self.zkey + '/hypervisor')
|
||||
def watch_hypervisor(data, stat, event=""):
|
||||
self.hypervisor = data.decode('ascii')
|
||||
self.manage_vm_state()
|
||||
|
||||
# Watch for changes to the state field in Zookeeper
|
||||
@zk.DataWatch(self.zkey + '/state')
|
||||
def watch_state(data, stat, event=""):
|
||||
self.state = data.decode('ascii')
|
||||
self.manage_vm_state()
|
||||
|
||||
# Get data functions
|
||||
|
|
Loading…
Reference in New Issue