diff options
author | Nikolas Hermanns <nikolas.hermanns@ericsson.com> | 2017-03-22 16:56:00 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-03-22 16:56:00 +0000 |
commit | a720669923b555f348235076369479bb13571978 (patch) | |
tree | 2d50857416677225b263286c8b0ffe6103762db1 | |
parent | b5b2a3abd74f84943cf3fab7ca7da591d326661c (diff) | |
parent | 7532973ae1c38e5d4f3fd6028f4688c72d41ea8d (diff) |
Merge "Set unlimited port quotas"
-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() |