Repository: cloudstack Updated Branches: refs/heads/master 505a7127b -> 34b177f2b
CLOUDSTACK-6904: removed typeInfo key as part of sanitize command Signed-off-by: SrikanteswaraRao Talluri <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/34b177f2 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/34b177f2 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/34b177f2 Branch: refs/heads/master Commit: 34b177f2b58f2acfa93bdec75d31495b279276a4 Parents: 505a712 Author: SrikanteswaraRao Talluri <[email protected]> Authored: Thu Jun 12 17:52:26 2014 +0530 Committer: SrikanteswaraRao Talluri <[email protected]> Committed: Thu Jun 12 17:52:26 2014 +0530 ---------------------------------------------------------------------- tools/marvin/marvin/cloudstackConnection.py | 2 ++ 1 file changed, 2 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/34b177f2/tools/marvin/marvin/cloudstackConnection.py ---------------------------------------------------------------------- diff --git a/tools/marvin/marvin/cloudstackConnection.py b/tools/marvin/marvin/cloudstackConnection.py index c49edf3..a8c35f6 100644 --- a/tools/marvin/marvin/cloudstackConnection.py +++ b/tools/marvin/marvin/cloudstackConnection.py @@ -267,6 +267,8 @@ class CSConnection(object): for param, value in payload.items(): if value is None: payload.pop(param) + elif param == 'typeInfo': + payload.pop(param) elif isinstance(value, list): if len(value) == 0: payload.pop(param)
