Don't try to split localhost log lines

They don't come with timestamps.

Change-Id: I20f84929a5ca7b075b88db3029c51c6bbba6f8d0
This commit is contained in:
Monty Taylor 2017-06-30 15:58:42 -05:00
parent a1920ec70b
commit 6a4d0aa745
No known key found for this signature in database
GPG Key ID: 7BAE94BC7141A594
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)