diff options
author | Jose Lausuch <jalausuch@suse.com> | 2017-11-30 14:31:11 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-11-30 14:31:11 +0000 |
commit | 462b1f77176092d2ea075f32bf60d06920c87240 (patch) | |
tree | 7761360c8568619bc12312cd9dd03ed869391a4b /functest/opnfv_tests/vnf/ims/orchestra_clearwaterims.py | |
parent | 4047bc91468525ca4f46c63d74dbe9fc9521e49f (diff) | |
parent | abd9c1d00cb48a620317e50dd459cb0db2b5f0c5 (diff) |
Merge "Adjust timeouts in Vnfs"
Diffstat (limited to 'functest/opnfv_tests/vnf/ims/orchestra_clearwaterims.py')
-rw-r--r-- | functest/opnfv_tests/vnf/ims/orchestra_clearwaterims.py | 4 |
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 c6e96e1d..4593a1b8 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) |