aboutsummaryrefslogtreecommitdiffstats
path: root/yardstick/benchmark/core/task.py
diff options
context:
space:
mode:
authorRoss Brattain <ross.b.brattain@intel.com>2017-09-25 22:23:36 -0700
committerRoss Brattain <ross.b.brattain@intel.com>2017-09-25 23:11:45 -0700
commit9ea225f671b774c6e373dbaab146d68cac16194e (patch)
tree7e7ca2fb007f14890d00357242e4f2ce3ef1832c /yardstick/benchmark/core/task.py
parentb2552579f300ec9f4c2b516eb44cac0efb3d4dd6 (diff)
task: fixup s/exe_info/exc_info
JIRA: YARDSTICK-785 Change-Id: Ib37498e8df6a520f1d03256b73346fcedab3a177 Signed-off-by: Ross Brattain <ross.b.brattain@intel.com>
Diffstat (limited to 'yardstick/benchmark/core/task.py')
-rw-r--r--yardstick/benchmark/core/task.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/yardstick/benchmark/core/task.py b/yardstick/benchmark/core/task.py
index 7e071bc0e..c175a950b 100644
--- a/yardstick/benchmark/core/task.py
+++ b/yardstick/benchmark/core/task.py
@@ -125,7 +125,7 @@ class Task(object): # pragma: no cover
except KeyboardInterrupt:
raise
except Exception:
- LOG.error('Testcase: "%s" FAILED!!!', case_name, exe_info=True)
+ LOG.error('Testcase: "%s" FAILED!!!', case_name, exc_info=True)
testcases[case_name] = {'criteria': 'FAIL', 'tc_data': []}
else:
LOG.info('Testcase: "%s" SUCCESS!!!', case_name)