From aff28f4144ffd16bd4851d67b59b0a0ed55483fe Mon Sep 17 00:00:00 2001 From: Prasanna Santhanam Date: Wed, 2 Oct 2013 20:16:41 +0530 Subject: [PATCH] marvin_refactor: remove the entity from passing to the apiserver entity attributes derived for each API should not be sent to the API server as it messes with the signature generation. Signed-off-by: Prasanna Santhanam --- tools/marvin/marvin/cloudstackConnection.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/marvin/marvin/cloudstackConnection.py b/tools/marvin/marvin/cloudstackConnection.py index 8c6c9cf3e05..460630e78a1 100644 --- a/tools/marvin/marvin/cloudstackConnection.py +++ b/tools/marvin/marvin/cloudstackConnection.py @@ -236,6 +236,8 @@ class CloudConnection(object): isAsync = getattr(cmd, attribute) elif attribute == "required": required = getattr(cmd, attribute) + elif attribute == "entity": + continue else: requests[attribute] = getattr(cmd, attribute)