Skip to content

Commit

Permalink
not use wait with transfer containers
Browse files Browse the repository at this point in the history
  • Loading branch information
pepoviola committed Oct 11, 2024
1 parent 14564c3 commit 4a17c30
Showing 1 changed file with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -321,12 +321,6 @@ export class KubeClient extends Client {
}

async waitTransferContainerReady(pod: string): Promise<void> {
await this.runCommand([
"wait",
"--for=condition=Running",
`Pod/${pod}`,
`-c ${TRANSFER_CONTAINER_NAME}`,
]);
await this.waitContainerInState(pod, TRANSFER_CONTAINER_NAME, "running");

await this.waitLog(
Expand Down

0 comments on commit 4a17c30

Please sign in to comment.