Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
pepoviola committed Nov 29, 2023
1 parent 9e8a0a6 commit 9cdba16
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -585,7 +585,7 @@ export class KubeClient extends Client {
async checkFileServer(): Promise<boolean> {
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");
}
Expand Down

0 comments on commit 9cdba16

Please sign in to comment.