From 54946ae3ad719640602587ef86396dfc01450f21 Mon Sep 17 00:00:00 2001 From: Matios102 Date: Wed, 14 Jan 2026 12:50:09 +0100 Subject: [PATCH] fix: increase maximum container output file size to 10 MB --- pkg/constants/constants.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/constants/constants.go b/pkg/constants/constants.go index 5ed9cc8..0f62842 100644 --- a/pkg/constants/constants.go +++ b/pkg/constants/constants.go @@ -86,8 +86,8 @@ const ( // Docker execution constants. const ( - MinContainerMemoryKB int64 = 64 * 1024 // 64 MB - MaxContainerOutputFileSize int64 = 1024 * 1024 // 1 MB per output file + MinContainerMemoryKB int64 = 64 * 1024 // 64 MB + MaxContainerOutputFileSize int64 = 10 * 1024 * 1024 // 10 MB per output file DockerTestScript = "run_tests.sh" RunnerUID = 1000 RunnerGID = 1000