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
This commit is contained in:
Alex Schultz 2020-06-04 07:19:39 -06:00
parent cda2af3608
commit 0778316f65
1 changed files with 1 additions and 1 deletions

View File

@ -153,7 +153,7 @@ class CallbackModule(DefaultCallback):
else:
if self._run_is_verbose(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):
self._clean_results(result._result, result._task.action)