The Taskcluster log output is not separated from the captured tidy output
Categories
(Taskcluster :: Workers, defect)
Tracking
(Not tracked)
People
(Reporter: trink, Assigned: dustin)
Details
The [taskcluster 2019-06-10 16:36:58.754Z] === Task Finished ===
output should be on its own line
Assignee | ||
Comment 1•5 years ago
|
||
I think this has to do with an implicit assumption that everything writing to the logs ends its write with a newline -- which rust did not in this case. The simple fix is probably to insert a newline before the === Task FInished ===
output.
Assignee | ||
Comment 2•5 years ago
|
||
Assignee | ||
Updated•5 years ago
|
Comment 3•5 years ago
|
||
This bug was for docker-worker, not generic-worker - so reopening.
Note, I personally disagree that this is a bug even in docker-worker.
Reporter | ||
Comment 4•5 years ago
|
||
Yeah I also believe we should fix the thing generating the output as opposed to trying to make the worker 'correct' the output. Please re assign it to the appropriate product/component. This is not a high priority I am just try to make our log output more consistent and silence some complaints/noise from the parser.
Assignee | ||
Comment 5•5 years ago
|
||
:jdm, do you have any guidance on where to send this?
Comment 6•5 years ago
|
||
If I understand the context correctly, right now the rustup tool prints [0m[
without a newline as the last piece of output. If that's the case, it should be reported to https://github.com/rust-lang/rustup.
Assignee | ||
Comment 7•5 years ago
|
||
Description
•