diff --git a/javascript/packages/orchestrator/src/providers/k8s/kubeClient.ts b/javascript/packages/orchestrator/src/providers/k8s/kubeClient.ts index e388c5e87..e36f81017 100644 --- a/javascript/packages/orchestrator/src/providers/k8s/kubeClient.ts +++ b/javascript/packages/orchestrator/src/providers/k8s/kubeClient.ts @@ -585,7 +585,7 @@ export class KubeClient extends Client { async checkFileServer(): Promise { const args = ["exec", "Pod/fileserver", "--", "curl", `http://localhost/`]; debug("checking fileserver", args); - const result = await this.runCommand(args, { allowFail: true } ); + const result = await this.runCommand(args, { allowFail: true }); debug("result", result); return result.stdout.includes("Welcome to nginx"); }