Updated Branches: refs/heads/4.2-forward 7cc8ccead -> 6e64fa53c
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/6e64fa53 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/6e64fa53 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/6e64fa53 Branch: refs/heads/4.2-forward Commit: 6e64fa53c62d927e6dc4c0053abc5d3f9f8329dc Parents: 7cc8cce Author: Ashutosh Kelkar <[email protected]> Authored: Tue Aug 27 15:49:20 2013 +0530 Committer: Jayapal <[email protected]> Committed: Tue Aug 27 16:06:47 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/6e64fa53/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()]
