From 6e64fa53c62d927e6dc4c0053abc5d3f9f8329dc Mon Sep 17 00:00:00 2001 From: Ashutosh Kelkar Date: Tue, 27 Aug 2013 15:49:20 +0530 Subject: [PATCH] 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 --- tools/marvin/marvin/integration/lib/base.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tools/marvin/marvin/integration/lib/base.py b/tools/marvin/marvin/integration/lib/base.py index 3016ee4ca32..c528cea24fc 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()]