From 8b9e47205ac68c70314227dd297f0a520f195a3e Mon Sep 17 00:00:00 2001 From: Ilya Siamionau Date: Mon, 13 May 2024 15:24:30 +0200 Subject: [PATCH] CM-35804 - Increase file size limit from 1MB to 5MB (#223) --- cycode/cli/consts.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cycode/cli/consts.py b/cycode/cli/consts.py index e6a0535b..132b45b9 100644 --- a/cycode/cli/consts.py +++ b/cycode/cli/consts.py @@ -127,8 +127,8 @@ EXCLUSIONS_BY_RULE_SECTION_NAME = 'rules' EXCLUSIONS_BY_PACKAGE_SECTION_NAME = 'packages' -# 1MB in bytes (in decimal) -FILE_MAX_SIZE_LIMIT_IN_BYTES = 1000000 +# 5MB in bytes (in decimal) +FILE_MAX_SIZE_LIMIT_IN_BYTES = 5000000 # 20MB in bytes (in binary) ZIP_MAX_SIZE_LIMIT_IN_BYTES = 20971520