Skip to content

Commit fc40b71

Browse files
committed
never abort running pipe
1 parent 7061e32 commit fc40b71

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

apps/coordinator/src/checkpointer.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -494,8 +494,8 @@ export class Checkpointer {
494494
const containerId = this.#logger.debug(
495495
// @ts-expect-error
496496
await $`crictl ps`
497-
.pipeStdout($$({ stdin: "pipe" })`grep ${containterName}`)
498-
.pipeStdout($$({ stdin: "pipe" })`cut -f1 ${"-d "}`)
497+
.pipeStdout($({ stdin: "pipe" })`grep ${containterName}`)
498+
.pipeStdout($({ stdin: "pipe" })`cut -f1 ${"-d "}`)
499499
);
500500

501501
if (!containerId.stdout) {

0 commit comments

Comments
 (0)