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 <tsp@apache.org>
This commit is contained in:
Prasanna Santhanam 2013-10-02 20:16:41 +05:30
parent f00fafe43c
commit aff28f4144
1 changed files with 2 additions and 0 deletions

View File

@ -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)