Fix missing output call

The ok signal was not properly using the same output function as the
rest so when we added timestamps these lines were missed.

Change-Id: I945fb6f058cbb1614714e86cbe5ce44abbefb0c8
(cherry picked from commit 0778316f65)
This commit is contained in:
Alex Schultz 2020-06-04 07:19:39 -06:00 committed by Emilien Macchi
parent 70a8d2c4e2
commit 8349a419da
1 changed files with 1 additions and 1 deletions

View File

@ -152,7 +152,7 @@ class CallbackModule(DefaultCallback):
else: else:
if self._run_is_verbose(result): if self._run_is_verbose(result):
line.append('result=%s' % self._dump_results(result._result)) line.append('result=%s' % self._dump_results(result._result))
self._display.display(' | '.join(line), color=color) self._output(line, color)
def v2_runner_on_failed(self, result, ignore_errors=False): def v2_runner_on_failed(self, result, ignore_errors=False):
self._clean_results(result._result, result._task.action) self._clean_results(result._result, result._task.action)