Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
skyrpex committed Mar 14, 2024
1 parent 7585f53 commit 8b2d424
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions containers/workload.sim.w
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ pub class Workload_sim {
this.internalUrlKey = key;
}

let s = new cloud.Service(inflight () => {
let containerService = new cloud.Service(inflight () => {
log("starting workload...");

let opts = this.props;
Expand Down Expand Up @@ -116,10 +116,10 @@ pub class Workload_sim {
return () => {
utils.shell("docker", ["rm", "-f", name]);
};
});
std.Node.of(s).hidden = true;
}) as "ContainerService";
std.Node.of(containerService).hidden = true;

let s2 = new cloud.Service(inflight () => {
let readinessService = new cloud.Service(inflight () => {
let name = this.state.get(this.containerIdKey).asStr();
let opts = this.props;
let var out: Json? = nil;
Expand Down Expand Up @@ -160,8 +160,8 @@ pub class Workload_sim {
}, interval: 0.1s);
}
}
}) as "Port Retrieval";
std.Node.of(s2).hidden = true;
}) as "ReadinessService";
std.Node.of(readinessService).hidden = true;

std.Node.of(this.state).hidden = true;
}
Expand Down

0 comments on commit 8b2d424

Please sign in to comment.