mirror of https://github.com/apache/cloudstack.git
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 <jayapal@apache.org>
This commit is contained in:
parent
7cc8ccead5
commit
6e64fa53c6
|
|
@ -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()]
|
||||
|
|
|
|||
Loading…
Reference in New Issue