Forgot self references

This commit is contained in:
Joshua Boniface 2018-06-04 12:18:23 -04:00
parent 533a70972f
commit cc402be6f6
1 changed files with 2 additions and 2 deletions

View File

@ -142,7 +142,7 @@ class VMInstance:
previous_hypervisor = self.zk.get(self.zkey + '/formerhypervisor')[0].decode('ascii') previous_hypervisor = self.zk.get(self.zkey + '/formerhypervisor')[0].decode('ascii')
print('>>> %s - Migrating VM to %s' % (self.domuuid, new_hypervisor)) print('>>> %s - Migrating VM to %s' % (self.domuuid, new_hypervisor))
migrate_ret = live_migrate_vm(new_hypervisor) migrate_ret = self.live_migrate_vm(new_hypervisor)
if migrate_ret != 0: if migrate_ret != 0:
print('>>> %s - Could not live migrate VM; forcing away uncleanly' % self.domuuid) print('>>> %s - Could not live migrate VM; forcing away uncleanly' % self.domuuid)
self.stop_vm() self.stop_vm()
@ -166,7 +166,7 @@ class VMInstance:
transaction.set_data('/domains/' + self.domuuid + '/hypervisor', new_hypervisor.encode('ascii')) transaction.set_data('/domains/' + self.domuuid + '/hypervisor', new_hypervisor.encode('ascii'))
transaction.set_data('/domains/' + self.domuuid + '/formerhypervisor', ''.encode('ascii')) transaction.set_data('/domains/' + self.domuuid + '/formerhypervisor', ''.encode('ascii'))
result = transaction.commit() result = transaction.commit()
migrate_ret = live_migrate_vm(new_hypervisor) migrate_ret = self.live_migrate_vm(new_hypervisor)
if migrate_ret != 0: if migrate_ret != 0:
print('>>> %s - Could not live migrate VM; forcing away uncleanly' % self.domuuid) print('>>> %s - Could not live migrate VM; forcing away uncleanly' % self.domuuid)
self.stop_vm() self.stop_vm()