diff options
| author | Matthew Hooker <matt@cloudscaling.com> | 2011-08-02 16:08:17 -0400 |
|---|---|---|
| committer | Matthew Hooker <matt@cloudscaling.com> | 2011-08-02 16:08:17 -0400 |
| commit | 614895b6c93904888aab99d1507d94271d763c04 (patch) | |
| tree | 476a37764ae9c4631c204a74a3ffb332ecaa3af3 /nova/virt | |
| parent | d1891d2dd18a14535ec22a0363fd8234a01dbb8c (diff) | |
fix missing method call and add failing test
Diffstat (limited to 'nova/virt')
| -rw-r--r-- | nova/virt/xenapi_conn.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/virt/xenapi_conn.py b/nova/virt/xenapi_conn.py index a3d0abf9f..042bf2b02 100644 --- a/nova/virt/xenapi_conn.py +++ b/nova/virt/xenapi_conn.py @@ -190,7 +190,7 @@ class XenAPIConnection(driver.ComputeDriver): def revert_migration(self, instance): """Reverts a resize, powering back on the instance""" - self._vmops.revert_resize(instance) + self._vmops.revert_migration(instance) def finish_migration(self, instance, disk_info, network_info, resize_instance=False): |
