diff options
| author | Matt Dietz <matt.dietz@rackspace.com> | 2011-08-05 14:07:48 +0000 |
|---|---|---|
| committer | Tarmac <> | 2011-08-05 14:07:48 +0000 |
| commit | 56ec8f040ba65e3b5ec1da768afaf0671fdb79f6 (patch) | |
| tree | f2b3b4d6142d4ec5850deee959b852938ea65f7e /nova/virt | |
| parent | 502801bfff0015ed3aa93b9d65a87cb6b80fd11d (diff) | |
| parent | 5fe92058d0ee11a7e9ea1c8f56b7e9350cf703e4 (diff) | |
Fixes lp821144
Revert resize broken because an incorrect number of parameters and a bad call at the virt layer
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 f63f9707e..49ae2623e 100644 --- a/nova/virt/xenapi_conn.py +++ b/nova/virt/xenapi_conn.py @@ -191,7 +191,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, context, instance, disk_info, network_info, resize_instance=False): |
