From bd57be88fd7a92342c3ca9e3a88841b8654fe65e Mon Sep 17 00:00:00 2001 From: Koushik Dutta Date: Mon, 1 Jun 2026 15:10:34 -0700 Subject: [PATCH] server: fix compile error --- server/src/services/cluster-fork.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/src/services/cluster-fork.ts b/server/src/services/cluster-fork.ts index 7847bcb37..912c6adff 100644 --- a/server/src/services/cluster-fork.ts +++ b/server/src/services/cluster-fork.ts @@ -82,7 +82,7 @@ export class ClusterForkService { const fork: ClusterForkParam = await worker.fork; const forkResultPromise = fork(options.runtime!, runtimeWorkerOptions, peerLiveness, getZip); - options.id! ||= this.runtime.findPluginDevice(runtimeWorkerOptions.packageJson.name)?._id; + options.id ||= this.runtime.findPluginDevice(runtimeWorkerOptions.packageJson.name)?._id; // the server is responsible for killing the forked process when the requestor is killed. // minimizes lifecycle management duplication in python and node.