diff options
author | Nikolas Hermanns <nikolas.hermanns@ericsson.com> | 2017-03-27 07:48:40 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-03-27 07:48:40 +0000 |
commit | 798d0d1ee2e2a4c03c2224761329329d5fc768b0 (patch) | |
tree | 2d50857416677225b263286c8b0ffe6103762db1 | |
parent | a2c3e2313303ab7eb0228c70384bcc2da7877bc8 (diff) | |
parent | 25c9b2275f18d2f0c089a017749263718724b374 (diff) |
Merge "Set unlimited port quotas" into stable/danube
-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() |