From 0006255b7488cea788416b00d76489a741e5db90 Mon Sep 17 00:00:00 2001 From: Ross Brattain Date: Mon, 25 Sep 2017 22:23:36 -0700 Subject: task: fixup s/exe_info/exc_info JIRA: YARDSTICK-785 Change-Id: Ib37498e8df6a520f1d03256b73346fcedab3a177 Signed-off-by: Ross Brattain (cherry picked from commit 9ea225f671b774c6e373dbaab146d68cac16194e) --- yardstick/benchmark/core/task.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'yardstick/benchmark') 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) -- cgit 1.2.3-korg