summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJose Lausuch <jose.lausuch@ericsson.com>2017-06-29 14:59:06 +0000
committerGerrit Code Review <gerrit@opnfv.org>2017-06-29 14:59:06 +0000
commitf31cf86c8580468ea1b2252be95d41d12b7100db (patch)
tree8c60aaaf784ac629747389f054fce7a4a2700f65
parent5baeb04d8b789c3e6de613b41b8a3d85484f2abf (diff)
parent2bf53c74f983352067310ea5007146566f22a41d (diff)
Merge "Increase timeout of Open Baton installation" into stable/danube
-rw-r--r--functest/opnfv_tests/vnf/ims/orchestra_ims.py4
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 8ea69df90..e7e2d818e 100644
--- a/functest/opnfv_tests/vnf/ims/orchestra_ims.py
+++ b/functest/opnfv_tests/vnf/ims/orchestra_ims.py
@@ -273,7 +273,7 @@ class ImsVnf(vnf_base.VnfOnBoardingBase):
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:
@@ -283,7 +283,7 @@ class ImsVnf(vnf_base.VnfOnBoardingBase):
time.sleep(5)
x += 1
- if x == 100:
+ if x == 200:
self.step_failure("Open Baton is not started correctly")
self.ob_ip = floatip