Fix some bugs

This commit is contained in:
2018-06-15 01:45:14 -04:00
parent 6798d4c078
commit 60fba72976
2 changed files with 3 additions and 3 deletions

View File

@ -48,8 +48,8 @@ class VMInstance:
@zk.DataWatch('/domains/{}/state'.format(self.domuuid))
def watch_state(data, stat, event=""):
# If we get a delete state, just terminate outselves
if state == 'delete':
del self
if data.decode('ascii') == 'delete':
self.__delete__
# Otherwise perform a management command
else:
self.manage_vm_state()