From 26ece3710d2ef7552d45818fd577f01c17b98d9f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Nussbaumer?= <rn@google.com> Date: Fri, 6 Jan 2012 16:44:48 +0100 Subject: [PATCH] LUInstanceCreate: self.disks is a dict not a disk object MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: RenΓ© Nussbaumer <rn@google.com> Reviewed-by: Michael Hanselmann <hansmi@google.com> --- lib/cmdlib.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/cmdlib.py b/lib/cmdlib.py index a65fc0157..d864cff53 100644 --- a/lib/cmdlib.py +++ b/lib/cmdlib.py @@ -9640,7 +9640,7 @@ class LUInstanceCreate(LogicalUnit): constants.ISPEC_MEM_SIZE: self.be_full.get(constants.BE_MAXMEM, None), constants.ISPEC_CPU_COUNT: self.be_full.get(constants.BE_VCPUS, None), constants.ISPEC_DISK_COUNT: len(self.disks), - constants.ISPEC_DISK_SIZE: [disk.size for disk in self.disks], + constants.ISPEC_DISK_SIZE: [disk["size"] for disk in self.disks], constants.ISPEC_NIC_COUNT: len(self.nics), } -- GitLab