Repository: cloudstack Updated Branches: refs/heads/4.4 30a98381b -> 4901cc535
Change newly added details map for deployVirtualMachine to an empty map, instead of passing all possible keys as empty values Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/4901cc53 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/4901cc53 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/4901cc53 Branch: refs/heads/4.4 Commit: 4901cc535ff77f5e2f6f811c618cb908699e5016 Parents: 30a9838 Author: Marcus Sorensen <[email protected]> Authored: Fri Mar 14 07:13:34 2014 -0600 Committer: Marcus Sorensen <[email protected]> Committed: Fri Mar 14 07:14:30 2014 -0600 ---------------------------------------------------------------------- tools/marvin/marvin/integration/lib/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/4901cc53/tools/marvin/marvin/integration/lib/base.py ---------------------------------------------------------------------- diff --git a/tools/marvin/marvin/integration/lib/base.py b/tools/marvin/marvin/integration/lib/base.py index ca9f2b4..38e8568 100755 --- a/tools/marvin/marvin/integration/lib/base.py +++ b/tools/marvin/marvin/integration/lib/base.py @@ -413,7 +413,7 @@ class VirtualMachine: if "userdata" in services: cmd.userdata = base64.urlsafe_b64encode(services["userdata"]) - cmd.details = [{"cpuNumber": "","cpuSpeed":"","memory":"","rootdisksize":""}] + cmd.details = [{}] if customcpunumber: cmd.details[0]["cpuNumber"] = customcpunumber
