diff options
author | boucherv <valentin.boucher@orange.com> | 2017-02-14 11:22:19 +0100 |
---|---|---|
committer | boucherv <valentin.boucher@orange.com> | 2017-02-15 10:57:37 +0100 |
commit | 8de29e4130fe18398d59692a6fcb492321ad3c60 (patch) | |
tree | 3d9674a6aa618ca6c0c83b0d91c8a1adc2996e04 /functest/core | |
parent | 8b9cd64a7b26a8259fd39801ebe77089a10e33d5 (diff) |
update cloudify_ims case
bug fixes
Provisional change of the ci loop var to daily for VNF testcase.
JIRA: FUNCTEST-710
Change-Id: I6dc8072b4e56c96473a2b09f1881b96024259db5
Signed-off-by: boucherv <valentin.boucher@orange.com>
Diffstat (limited to 'functest/core')
-rw-r--r-- | functest/core/vnf_base.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/functest/core/vnf_base.py b/functest/core/vnf_base.py index 44b4ae04..8e98d8ed 100644 --- a/functest/core/vnf_base.py +++ b/functest/core/vnf_base.py @@ -67,8 +67,8 @@ class VnfOnBoardingBase(base.TestcaseBase): res_orchestrator['result']) self.details['orchestrator']['duration'] = round( orchestrator_ready_time - self.start_time, 1) - except: - self.logger.warn("Problem with the Orchestrator") + except Exception: + self.logger.warn("Problem with the Orchestrator", exc_info=True) # Deploy VNF try: |