From 880b2fb7fd4d3e73484ae8b763041c85ec4f4ffb Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Thu, 26 Mar 2026 16:05:23 +0000 Subject: [PATCH] perf: enable local channel planner parallelism on node 25 --- scripts/test-planner/runtime-profile.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/test-planner/runtime-profile.mjs b/scripts/test-planner/runtime-profile.mjs index b059eb73f15..cc08391c2aa 100644 --- a/scripts/test-planner/runtime-profile.mjs +++ b/scripts/test-planner/runtime-profile.mjs @@ -286,7 +286,7 @@ export function resolveExecutionBudget(runtimeCapabilities) { unitHeavyWorkers: Math.min(cpuCount, bandBudget.unitHeavy), extensionWorkers: Math.min(cpuCount, bandBudget.extensions), gatewayWorkers: Math.min(cpuCount, bandBudget.gateway), - topLevelParallelEnabled: runtime.nodeMajor < 25, + topLevelParallelEnabled: !runtime.isWindows, topLevelParallelLimit: Math.min(cpuCount, bandBudget.topLevelIsolated), topLevelParallelLimitNoIsolate: Math.min(cpuCount, bandBudget.topLevelNoIsolate), topLevelParallelLimitIsolated: Math.min(cpuCount, bandBudget.topLevelIsolated),