summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRomanos Skiadas <rski@intracom-telecom.com>2017-03-18 21:29:45 +0200
committerRomanos Skiadas <rski@intracom-telecom.com>2017-03-27 07:40:43 +0000
commit25c9b2275f18d2f0c089a017749263718724b374 (patch)
tree1f829cefec7ed1cf7c970e4d5acb66d583b44eda
parentd4297881953e77ab45f2b2651e2f69f07ea166f2 (diff)
Set unlimited port quotas
Change-Id: I6de4bc921f1823f58395e27d804b863b79d23030 JIRA: SDNVPN-126 Signed-off-by: Romanos Skiadas <rski@intracom-telecom.com> (cherry picked from commit 7532973ae1c38e5d4f3fd6028f4688c72d41ea8d)
-rw-r--r--sdnvpn/test/functest/run_tests.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/sdnvpn/test/functest/run_tests.py b/sdnvpn/test/functest/run_tests.py
index 9acfa0f..1130759 100644
--- a/sdnvpn/test/functest/run_tests.py
+++ b/sdnvpn/test/functest/run_tests.py
@@ -44,7 +44,8 @@ def push_results(testname, start_time, end_time, criteria, details):
def main():
# Workaround for https://jira.opnfv.org/projects/SDNVPN/issues/SDNVPN-100
- cmd_line = "neutron quota-update --subnet -1 --network -1"
+ # and SDNVPN-126
+ cmd_line = "neutron quota-update --subnet -1 --network -1 --port -1"
logger.info("Setting subnet/net quota to unlimited : %s" % cmd_line)
cmd = os.popen(cmd_line)
output = cmd.read()