From 90436e5110ce4a7953e0991bdce70666bf67df0f Mon Sep 17 00:00:00 2001 From: BoYanZh Date: Thu, 23 Jul 2026 03:25:28 -0700 Subject: [PATCH] fix: increase procLimit to 200 and stdout/stderr max to 16384 --- conf.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/conf.json b/conf.json index 54dcd94..5368ec1 100644 --- a/conf.json +++ b/conf.json @@ -16,7 +16,7 @@ ], "cpuLimit": 10000000000, "memoryLimit": 104857600, - "procLimit": 50, + "procLimit": 200, "copyInDir": ".", "copyIn": { "/tmp/repo-health-checker": { @@ -32,11 +32,11 @@ }, "stdout": { "name": "stdout", - "max": 4096 + "max": 16384 }, "stderr": { "name": "stderr", - "max": 4096 + "max": 16384 } } }