We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7061e32 commit fc40b71Copy full SHA for fc40b71
apps/coordinator/src/checkpointer.ts
@@ -494,8 +494,8 @@ export class Checkpointer {
494
const containerId = this.#logger.debug(
495
// @ts-expect-error
496
await $`crictl ps`
497
- .pipeStdout($$({ stdin: "pipe" })`grep ${containterName}`)
498
- .pipeStdout($$({ stdin: "pipe" })`cut -f1 ${"-d "}`)
+ .pipeStdout($({ stdin: "pipe" })`grep ${containterName}`)
+ .pipeStdout($({ stdin: "pipe" })`cut -f1 ${"-d "}`)
499
);
500
501
if (!containerId.stdout) {
0 commit comments