Skip to content

Commit ecb34b0

Browse files
refactor(Sky): Enable skipHealthCheck in Bootstrap for minimal layer
Change skipHealthCheck from false to true when calling runBootstrap(). The minimal layer (TelemetryLive only) doesn't provide HealthTag, EnvironmentTag, etc., so skipping the health check avoids unnecessary failures. Individual stages catch their own errors gracefully, making the global health check redundant for this configuration.
1 parent 1d1586b commit ecb34b0

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

Source/Workbench/Electron/Bootstrap.ts

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,13 @@ try {
2727

2828
console.log("[Electron] Bootstrap module loaded successfully");
2929

30-
// runBootstrap returns an Effect — run it via Effect.runPromise
30+
// runBootstrap returns an Effect — run it via Effect.runPromise.
31+
// skipHealthCheck: true because the minimal layer (TelemetryLive only)
32+
// doesn't provide HealthTag, EnvironmentTag, etc. Individual stages
33+
// catch their own errors gracefully.
3134
const BootstrapResult: BootstrapResult = await Effect.runPromise(
3235
runBootstrap({
33-
skipHealthCheck: false,
36+
skipHealthCheck: true,
3437
debugMode: true,
3538
}),
3639
);

0 commit comments

Comments
 (0)