Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
pepoviola committed Nov 16, 2023
1 parent ec6a4ae commit 49f0444
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -543,9 +543,7 @@ export class KubeClient extends Client {
},
{
type: "deployment",
files: [
settings.backchannel ? "backchannel-pod.yaml" : null,
],
files: [settings.backchannel ? "backchannel-pod.yaml" : null],
},
];

Expand All @@ -557,7 +555,9 @@ export class KubeClient extends Client {

// wait until fileserver is ready, fix race condition #700.
const xinfra = process.env.X_INFRA_INSTANCE || "ondemand";
await this.createStaticResource("fileserver-pod.yaml", this.namespace, { xinfra });
await this.createStaticResource("fileserver-pod.yaml", this.namespace, {
xinfra,
});
await this.waitPodReady("fileserver");
sleep(3 * 1000);
let fileServerOk = false;
Expand Down

0 comments on commit 49f0444

Please sign in to comment.