diff options
author | Romanos Skiadas <rski@intracom-telecom.com> | 2017-03-18 21:29:45 +0200 |
---|---|---|
committer | Romanos Skiadas <rski@intracom-telecom.com> | 2017-03-18 21:30:12 +0200 |
commit | 7532973ae1c38e5d4f3fd6028f4688c72d41ea8d (patch) | |
tree | e0b0871b0d71652ed0bd73e1887586cfc022ab58 | |
parent | a168ebdb0fc192e0185a150fbf146a53f3a0eec7 (diff) |
Set unlimited port quotas
Change-Id: I6de4bc921f1823f58395e27d804b863b79d23030
JIRA: SDNVPN-126
Signed-off-by: Romanos Skiadas <rski@intracom-telecom.com>
-rw-r--r-- | sdnvpn/test/functest/run_tests.py | 3 |
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() |