aboutsummaryrefslogtreecommitdiffstats
path: root/functest/opnfv_tests/vnf/ims/orchestra_clearwaterims.py
diff options
context:
space:
mode:
authorCédric Ollivier <cedric.ollivier@orange.com>2017-11-30 11:55:02 +0100
committerCédric Ollivier <cedric.ollivier@orange.com>2017-11-30 14:57:48 +0100
commitabd9c1d00cb48a620317e50dd459cb0db2b5f0c5 (patch)
treeebb09e4903563e464994c6b63c62780891b561a7 /functest/opnfv_tests/vnf/ims/orchestra_clearwaterims.py
parentc38d87b9a57466a5663395926a576a87623eb2f4 (diff)
Adjust timeouts in Vnfs
When testcases fail, the jjobs is aborted and the result isn't printed. Change-Id: Ibda6268873303e631705c695a41c50980a3d29e5 Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
Diffstat (limited to 'functest/opnfv_tests/vnf/ims/orchestra_clearwaterims.py')
-rw-r--r--functest/opnfv_tests/vnf/ims/orchestra_clearwaterims.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/functest/opnfv_tests/vnf/ims/orchestra_clearwaterims.py b/functest/opnfv_tests/vnf/ims/orchestra_clearwaterims.py
index c6e96e1d0..4593a1b8b 100644
--- a/functest/opnfv_tests/vnf/ims/orchestra_clearwaterims.py
+++ b/functest/opnfv_tests/vnf/ims/orchestra_clearwaterims.py
@@ -478,7 +478,7 @@ class ClearwaterImsVnf(vnf.VnfOnBoarding):
self.logger.info("Waiting for Open Baton NFVO to be up and running...")
timeout = 0
- while timeout < 45:
+ while timeout < 20:
if servertest(
self.mano['details']['fip'].ip,
"8080"):
@@ -490,7 +490,7 @@ class ClearwaterImsVnf(vnf.VnfOnBoarding):
time.sleep(60)
timeout += 1
- if timeout >= 45:
+ if timeout >= 20:
duration = time.time() - start_time
self.details["orchestrator"].update(
status='FAIL', duration=duration)