Skip to content

Commit 8b9e472

Browse files
authored
CM-35804 - Increase file size limit from 1MB to 5MB (#223)
1 parent 10d726f commit 8b9e472

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cycode/cli/consts.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -127,8 +127,8 @@
127127
EXCLUSIONS_BY_RULE_SECTION_NAME = 'rules'
128128
EXCLUSIONS_BY_PACKAGE_SECTION_NAME = 'packages'
129129

130-
# 1MB in bytes (in decimal)
131-
FILE_MAX_SIZE_LIMIT_IN_BYTES = 1000000
130+
# 5MB in bytes (in decimal)
131+
FILE_MAX_SIZE_LIMIT_IN_BYTES = 5000000
132132

133133
# 20MB in bytes (in binary)
134134
ZIP_MAX_SIZE_LIMIT_IN_BYTES = 20971520

0 commit comments

Comments
 (0)