Updated Branches: refs/heads/master de770d37e -> a7833cdfb
CLOUDSTACK-4303: Add missing base.py changes egressdefaultpolicy parameter was not set in base.py. Therefore egress test failed. Added this missing change. Signed-off-by: Jayapal <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/a7833cdf Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/a7833cdf Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/a7833cdf Branch: refs/heads/master Commit: a7833cdfb4b4a3dfcf9b185241056620651b6eb1 Parents: de770d3 Author: Ashutosh Kelkar <[email protected]> Authored: Tue Aug 27 15:49:20 2013 +0530 Committer: Jayapal <[email protected]> Committed: Tue Aug 27 16:08:37 2013 +0530 ---------------------------------------------------------------------- tools/marvin/marvin/integration/lib/base.py | 4 ++++ 1 file changed, 4 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/a7833cdf/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 3016ee4..c528cea 100755 --- a/tools/marvin/marvin/integration/lib/base.py +++ b/tools/marvin/marvin/integration/lib/base.py @@ -1493,6 +1493,10 @@ class NetworkOffering: cmd.specifyVlan = services["specifyVlan"] if "specifyIpRanges" in services: cmd.specifyIpRanges = services["specifyIpRanges"] + + if "egress_policy" in services: + cmd.egressdefaultpolicy = services["egress_policy"] + cmd.availability = 'Optional' [setattr(cmd, k, v) for k, v in kwargs.items()]
