diff options
author | Jose Lausuch <jose.lausuch@ericsson.com> | 2017-06-27 13:37:47 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-06-27 13:37:47 +0000 |
commit | 4ef95523104ea0efc20869b7522e12c6d1b89613 (patch) | |
tree | c97b4c2d9ebb32bb1f4458c672e88cd74362cd6d /functest/opnfv_tests/vnf | |
parent | 7c5786afbd8b63c7ca71961abc52a2477ea03824 (diff) | |
parent | 2294e0b869c4d92b46def152da5a3c53bce8badd (diff) |
Merge "Increase timeout of Open Baton installation"
Diffstat (limited to 'functest/opnfv_tests/vnf')
-rwxr-xr-x | functest/opnfv_tests/vnf/ims/orchestra_ims.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/functest/opnfv_tests/vnf/ims/orchestra_ims.py b/functest/opnfv_tests/vnf/ims/orchestra_ims.py index 207d6a67..7b1ea9ad 100755 --- a/functest/opnfv_tests/vnf/ims/orchestra_ims.py +++ b/functest/opnfv_tests/vnf/ims/orchestra_ims.py @@ -271,7 +271,7 @@ class ImsVnf(vnf.VnfOnBoarding): self.logger.info("Waiting for Open Baton NFVO to be up and running...") x = 0 - while x < 100: + while x < 200: if servertest(floatip, "8080"): break else: @@ -281,7 +281,7 @@ class ImsVnf(vnf.VnfOnBoarding): time.sleep(5) x += 1 - if x == 100: + if x == 200: self.logger.error("Open Baton is not started correctly") self.ob_ip = floatip |