From 1bafadee905cacd1cbafe756b2a4e9d34ddc4a62 Mon Sep 17 00:00:00 2001 From: Rhys Sullivan <39114868+RhysSullivan@users.noreply.github.com> Date: Wed, 19 Aug 2026 07:11:13 -0700 Subject: [PATCH] Fix lint: do not stringify the unknown warmup error --- apps/cloud/src/server.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/apps/cloud/src/server.ts b/apps/cloud/src/server.ts index 9821de48f..7566ad45e 100644 --- a/apps/cloud/src/server.ts +++ b/apps/cloud/src/server.ts @@ -253,7 +253,7 @@ const warmStartGraph = (env: Env, ctx: ExecutionContext): void => { ctx, ); console.log(JSON.stringify({ probe: "warm", ok: true, ms: Date.now() - startedAt })); - } catch (err) { + } catch { // Advisory only — the request path still loads the graph lazily. startGraphWarmupStarted = false; console.log( @@ -261,7 +261,6 @@ const warmStartGraph = (env: Env, ctx: ExecutionContext): void => { probe: "warm", ok: false, ms: Date.now() - startedAt, - err: String(err), }), ); }