From 255ce807236e9cdfd61357208fbb12b3453b109d Mon Sep 17 00:00:00 2001 From: Dan Prince Date: Sat, 21 Jan 2012 17:31:24 -0500 Subject: Allow compute manager prep_resize to accept kwargs Fixes issues when trying to resize instances. Fixes LP bug #919642. Change-Id: I411d29404902c377088750e1ae4560b8a419d4f2 --- nova/compute/manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'nova/compute') diff --git a/nova/compute/manager.py b/nova/compute/manager.py index 807150949..e80c11b84 100644 --- a/nova/compute/manager.py +++ b/nova/compute/manager.py @@ -1115,7 +1115,7 @@ class ComputeManager(manager.SchedulerDependentManager): @exception.wrap_exception(notifier=notifier, publisher_id=publisher_id()) @checks_instance_lock @wrap_instance_fault - def prep_resize(self, context, instance_uuid, instance_type_id): + def prep_resize(self, context, instance_uuid, instance_type_id, **kwargs): """Initiates the process of moving a running instance to another host. Possibly changes the RAM and disk size in the process. -- cgit