From d55a71854c8a2fe51d59ae6d082b2e16e4c9844d Mon Sep 17 00:00:00 2001 From: Yun Mao Date: Fri, 24 Aug 2012 17:04:03 -0400 Subject: Remove duplicated method VM_migrate_send The correct signature is defined in line 653 later in the code. Partially fix bug 1037183 Change-Id: Ib6904ea962da2bcef391416be4a09801976d8bcd --- nova/virt/xenapi/fake.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/nova/virt/xenapi/fake.py b/nova/virt/xenapi/fake.py index d6b523225..3b3100f21 100644 --- a/nova/virt/xenapi/fake.py +++ b/nova/virt/xenapi/fake.py @@ -509,10 +509,6 @@ class SessionBase(object): def VM_pool_migrate(self, _1, vm_ref, host_ref, options): pass - def VM_migrate_send(self, vmref, migrate_data, islive, vdi_map, - vif_map, options): - pass - def VDI_remove_from_other_config(self, _1, vdi_ref, key): db_ref = _db_content['VDI'][vdi_ref] if not 'other_config' in db_ref: -- cgit