Merge "Don't try to split localhost log lines" into feature/zuulv3

This commit is contained in:
Jenkins 2017-06-30 21:13:57 +00:00 committed by Gerrit Code Review
commit 6ea7dc7ecd
1 changed files with 1 additions and 2 deletions

View File

@ -201,8 +201,7 @@ class CallbackModule(default.CallbackModule):
stdout_lines = zuul_filter_result(result._result)
if is_localhost:
for line in stdout_lines:
ts, ln = (x.strip() for x in line.split(' | ', 1))
self._log("localhost | %s " % ln, ts=ts)
self._log("localhost | %s " % line.strip())
def v2_runner_on_failed(self, result, ignore_errors=False):
self._process_result_for_localhost(result)