Skip to content

Commit 6723ca7

Browse files
committed
stdio [skip ci]
1 parent 901390e commit 6723ca7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

spartan/scripts/k8s_log_reporter.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -453,10 +453,10 @@ function startPodStream(podName: string): void {
453453
"logs", "-f", "-n", namespace, podName, "--since=5s",
454454
]);
455455

456-
// Pipe to cache_log
456+
// Pipe to cache_log (inherit stdout/stderr so we see cache_log output)
457457
const cacheLogName = `${cacheLogPrefix}-${podName}`;
458458
const cacheLogProc = spawn("cache_log", [cacheLogName], {
459-
stdio: ["pipe", "ignore", "ignore"],
459+
stdio: ["pipe", "inherit", "inherit"],
460460
});
461461
462462
// Process lines for state tracking AND forward to cache_log

0 commit comments

Comments
 (0)