diff options
author | valentin boucher <valentin.boucher@orange.com> | 2017-02-15 10:24:40 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-02-15 10:24:40 +0000 |
commit | 128f37f591eddae669cb606b65bb1e7ed632e965 (patch) | |
tree | 90c867afa134430869cec1569eba475f64c1c6e4 /functest/core | |
parent | b605fdd304c4e698c64400338394a7b6f9663017 (diff) | |
parent | 8de29e4130fe18398d59692a6fcb492321ad3c60 (diff) |
Merge "update cloudify_ims case"
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: |