From 75abce8f7144af774346e06b0c1a2cfa589ec09c Mon Sep 17 00:00:00 2001 From: StarpTech Date: Tue, 17 Mar 2026 10:54:25 +0100 Subject: [PATCH] feat: configure composeGraphsPool to use child_process runtime --- controlplane/src/core/composition/composeGraphs.pool.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/controlplane/src/core/composition/composeGraphs.pool.ts b/controlplane/src/core/composition/composeGraphs.pool.ts index 5a9d5ba6a8..5d3ada1075 100644 --- a/controlplane/src/core/composition/composeGraphs.pool.ts +++ b/controlplane/src/core/composition/composeGraphs.pool.ts @@ -62,7 +62,9 @@ function getComposeGraphsPool() { filename, minThreads: 1, maxThreads: getMaxThreads(), + runtime: 'child_process', concurrentTasksPerWorker: 2, + serialization: 'advanced', }); return composeGraphsPool;