summaryrefslogtreecommitdiffstats
path: root/sdnvpn/lib/utils.py
diff options
context:
space:
mode:
authortomsou <soth@intracom-telecom.com>2018-01-18 12:42:57 +0200
committertomsou <soth@intracom-telecom.com>2018-01-18 14:41:12 +0200
commitfbfb2513a8bc4f82ba2f5e69e64da659716cfb2d (patch)
tree6a6060b3c2b505ff78be1c8d84b893a7cd8e4a7e /sdnvpn/lib/utils.py
parentd61955e655416c97be7a5030ae5ae23542a28a9e (diff)
Set unlimited router quotas
Update router quotas to fix bgpvpn scenario in CIq JIRA:SDNVPN-208 Change-Id: I25353229d119459c8e961b0f3f6264f715533d13 Signed-off-by: tomsou <soth@intracom-telecom.com>
Diffstat (limited to 'sdnvpn/lib/utils.py')
-rw-r--r--sdnvpn/lib/utils.py10
1 files changed, 6 insertions, 4 deletions
diff --git a/sdnvpn/lib/utils.py b/sdnvpn/lib/utils.py
index 0ab8b84..44641ee 100644
--- a/sdnvpn/lib/utils.py
+++ b/sdnvpn/lib/utils.py
@@ -777,11 +777,12 @@ def is_fail_mode_secure():
def update_nw_subnet_port_quota(neutron_client, tenant_id, nw_quota,
- subnet_quota, port_quota):
+ subnet_quota, port_quota, router_quota):
json_body = {"quota": {
"network": nw_quota,
"subnet": subnet_quota,
- "port": port_quota
+ "port": port_quota,
+ "router": router_quota
}}
try:
@@ -790,8 +791,9 @@ def update_nw_subnet_port_quota(neutron_client, tenant_id, nw_quota,
return True
except Exception as e:
logger.error("Error [update_nw_subnet_port_quota(neutron_client,"
- " '%s', '%s', '%s', '%s')]: %s" %
- (tenant_id, nw_quota, subnet_quota, port_quota, e))
+ " '%s', '%s', '%s', '%s, %s')]: %s" %
+ (tenant_id, nw_quota, subnet_quota,
+ port_quota, router_quota, e))
return False