Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
pepoviola committed Oct 19, 2024
1 parent 2bee039 commit bd1a88b
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions javascript/packages/orchestrator/src/providers/k8s/kubeClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,12 @@ export class KubeClient extends Client {
await this.waitPodReady(name);

if (longRunning)
await this.runCommand(["wait", "--for=condition=Ready", "--timeout=240s", `Pod/${name}`]);
await this.runCommand([
"wait",
"--for=condition=Ready",
"--timeout=240s",
`Pod/${name}`,
]);

logTable = new CreateLogTable({
colWidths: [20, 100],
Expand Down Expand Up @@ -569,7 +574,12 @@ export class KubeClient extends Client {
xinfra,
});
debug("waiting for pod: fileserver, to be ready");
await this.runCommand(["wait", "--for=condition=Ready", "--timeout=240s", "Pod/fileserver"]);
await this.runCommand([
"wait",
"--for=condition=Ready",
"--timeout=240s",
"Pod/fileserver",
]);
await this.waitPodReady("fileserver");
debug("pod: fileserver, ready");
let fileServerOk = false;
Expand Down

0 comments on commit bd1a88b

Please sign in to comment.