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/compute | |
| 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/compute')
| -rw-r--r-- | nova/compute/manager.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/nova/compute/manager.py b/nova/compute/manager.py index 9f566dea7..69acf6e95 100644 --- a/nova/compute/manager.py +++ b/nova/compute/manager.py @@ -748,7 +748,8 @@ class ComputeManager(manager.SchedulerDependentManager): instance_ref['host']) rpc.cast(context, topic, {'method': 'finish_revert_resize', - 'args': {'migration_id': migration_ref['id']}, + 'args': {'instance_id': instance_ref['uuid'], + 'migration_id': migration_ref['id']}, }) @exception.wrap_exception(notifier=notifier, publisher_id=publisher_id()) |
