We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8f45cdc commit 3be8cdfCopy full SHA for 3be8cdf
1 file changed
frontend/src/core/runtime/runtime.ts
@@ -5,6 +5,7 @@ import { Logger } from "@/utils/Logger";
5
import { KnownQueryParams } from "../constants";
6
import { isIslands } from "../islands/utils";
7
import { getSessionId, type SessionId } from "../kernel/session";
8
+import { isStaticNotebook } from "../static/static-state";
9
import { isWasm } from "../wasm/utils";
10
import type { RuntimeConfig } from "./types";
11
@@ -178,8 +179,8 @@ export class RuntimeManager {
178
179
}
180
181
async isHealthy(): Promise<boolean> {
- // Always healthy if WASM
182
- if (isWasm() || isIslands()) {
+ // Always healthy if WASM, Islands, or a static notebook (no server)
183
+ if (isWasm() || isIslands() || isStaticNotebook()) {
184
return true;
185
186
0 commit comments