Skip to content

Commit e92a329

Browse files
committed
Remove trailing newlines to make logs more readable
1 parent 9c9985f commit e92a329

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

compiler/base/orchestrator/src/coordinator.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2570,6 +2570,9 @@ impl TerminateContainer {
25702570
let stdout = String::from_utf8_lossy(&s.stdout);
25712571
let stderr = String::from_utf8_lossy(&s.stderr);
25722572

2573+
let stdout = stdout.trim();
2574+
let stderr = stderr.trim();
2575+
25732576
error!(?code, %stdout, %stderr, %name, "Killing the container failed");
25742577
}
25752578
}

0 commit comments

Comments
 (0)