From bd1a88b59af58525cc62112de7d8104e8eaebd79 Mon Sep 17 00:00:00 2001 From: Javier Viola Date: Sat, 19 Oct 2024 19:28:32 -0300 Subject: [PATCH] lint --- .../orchestrator/src/providers/k8s/kubeClient.ts | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/javascript/packages/orchestrator/src/providers/k8s/kubeClient.ts b/javascript/packages/orchestrator/src/providers/k8s/kubeClient.ts index 349076468..dad98a3cd 100644 --- a/javascript/packages/orchestrator/src/providers/k8s/kubeClient.ts +++ b/javascript/packages/orchestrator/src/providers/k8s/kubeClient.ts @@ -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], @@ -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;