From 24ecc19e99d5e5c0f6f4e87e14a1a7f6521d0bbe Mon Sep 17 00:00:00 2001 From: Koushik Dutta Date: Thu, 2 Apr 2026 12:45:22 -0700 Subject: [PATCH] fix: add ts-ignore for delete operations on required properties zipFile and unzippedPath are set at runtime by cluster worker host. --- server/src/plugin/runtime/cluster-fork-worker.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/server/src/plugin/runtime/cluster-fork-worker.ts b/server/src/plugin/runtime/cluster-fork-worker.ts index 01142166c..c43a9757d 100644 --- a/server/src/plugin/runtime/cluster-fork-worker.ts +++ b/server/src/plugin/runtime/cluster-fork-worker.ts @@ -16,7 +16,9 @@ export function createClusterForkWorker( // these are specific to the cluster worker host // and will be set there. + // @ts-ignore these are optional at runtime delete runtimeWorkerOptions.zipFile; + // @ts-ignore these are optional at runtime delete runtimeWorkerOptions.unzippedPath; const waitKilled = new Deferred();