aboutsummaryrefslogtreecommitdiffstats
path: root/functest/opnfv_tests/vnf
diff options
context:
space:
mode:
authorMichael Pauls <michael.pauls@fokus.fraunhofer.de>2017-06-27 13:50:02 +0200
committerMichael Pauls <michael.pauls@fokus.fraunhofer.de>2017-06-27 13:50:02 +0200
commit2294e0b869c4d92b46def152da5a3c53bce8badd (patch)
treede0db3fd0eb69cdad9c9d1eaf9b2eb4826fad737 /functest/opnfv_tests/vnf
parent3409bc4eaf88b78e15b045afbd6b461c3fb281e7 (diff)
Increase timeout of Open Baton installation
Change-Id: Ifdc24a3fc9e2c315b41f9e68bccb88df36252b0c JIRA: ORCHESTRA-14 Signed-off-by: Michael Pauls <michael.pauls@fokus.fraunhofer.de>
Diffstat (limited to 'functest/opnfv_tests/vnf')
-rwxr-xr-xfunctest/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 207d6a672..7b1ea9ad8 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