summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Pauls <michael.pauls@fokus.fraunhofer.de>2017-06-27 13:50:02 +0200
committerjose.lausuch <jose.lausuch@ericsson.com>2017-06-27 15:55:22 +0200
commit2bf53c74f983352067310ea5007146566f22a41d (patch)
treea65a1f7dbb9fddb5805cb3e7a2c9aa282d0b7d24
parent0ce39e2e6062ab1605433418d0a8cfda1a7cdeec (diff)
Increase timeout of Open Baton installation
Change-Id: Ifdc24a3fc9e2c315b41f9e68bccb88df36252b0c JIRA: ORCHESTRA-14 Signed-off-by: Michael Pauls <michael.pauls@fokus.fraunhofer.de> Signed-off-by: jose.lausuch <jose.lausuch@ericsson.com>
-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