fix: increase procLimit to 200 and stdout/stderr max to 16384

This commit is contained in:
张泊明518370910136 2026-07-23 03:25:28 -07:00
parent 4ce9726296
commit 90436e5110
GPG Key ID: CA088E6D9284F870

View File

@ -16,7 +16,7 @@
], ],
"cpuLimit": 10000000000, "cpuLimit": 10000000000,
"memoryLimit": 104857600, "memoryLimit": 104857600,
"procLimit": 50, "procLimit": 200,
"copyInDir": ".", "copyInDir": ".",
"copyIn": { "copyIn": {
"/tmp/repo-health-checker": { "/tmp/repo-health-checker": {
@ -32,11 +32,11 @@
}, },
"stdout": { "stdout": {
"name": "stdout", "name": "stdout",
"max": 4096 "max": 16384
}, },
"stderr": { "stderr": {
"name": "stderr", "name": "stderr",
"max": 4096 "max": 16384
} }
} }
} }