From 462ac505f91322c486a5d281d7b408e55d9fc71d Mon Sep 17 00:00:00 2001 From: Juan Manuel Barco Cores Date: Wed, 10 Dec 2025 12:45:47 +0100 Subject: [PATCH] Update THRESHOLD_RATIO --- packages/certification-service/code/src/utils/downloadUtils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/certification-service/code/src/utils/downloadUtils.js b/packages/certification-service/code/src/utils/downloadUtils.js index 8c11bf7..1b6f4ad 100644 --- a/packages/certification-service/code/src/utils/downloadUtils.js +++ b/packages/certification-service/code/src/utils/downloadUtils.js @@ -18,7 +18,7 @@ const agent = new https.Agent({ const MAX_ZIP_FILES = 10000; const MAX_ZIP_FILES_SIZE = 50000000; // 50MB -const THRESHOLD_RATIO = 100; // this is too much but many repos need a this +const THRESHOLD_RATIO = 500; // this is too much but some repos need this high ratio due to many small files being compressed const logger = getAppLogger();