From 4c3a79e54f3573961e578f1bd5093a6d09df6136 Mon Sep 17 00:00:00 2001 From: Mark McLoughlin Date: Fri, 10 Feb 2012 06:26:46 +0000 Subject: Fix disk_config typo rezise vs resize Obviously we're lacking some unit test coverage here. Change-Id: I06fab62eb16fd9aa344606a5f8b8237acec3cf31 --- nova/api/openstack/compute/servers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nova/api/openstack/compute/servers.py b/nova/api/openstack/compute/servers.py index 57adf22ae..574c48644 100644 --- a/nova/api/openstack/compute/servers.py +++ b/nova/api/openstack/compute/servers.py @@ -303,7 +303,7 @@ class ActionDeserializer(CommonDeserializer): raise AttributeError("No flavorRef was specified in request") if node.hasAttribute("auto_disk_config"): - rezise['auto_disk_config'] = node.getAttribute("auto_disk_config") + resize['auto_disk_config'] = node.getAttribute("auto_disk_config") return resize -- cgit