Skip to content

Commit af44a1a

Browse files
committed
Increase allowed layer package size.
1 parent 7bdc7d6 commit af44a1a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/check_layer_size.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
# Compares layer size to threshold, and fails if below that threshold
99

1010
set -e
11-
MAX_LAYER_COMPRESSED_SIZE_KB=$(expr 8 \* 1024)
12-
MAX_LAYER_UNCOMPRESSED_SIZE_KB=$(expr 21 \* 1024)
11+
MAX_LAYER_COMPRESSED_SIZE_KB=$(expr 9 \* 1024 / 2) # 8704 KB
12+
MAX_LAYER_UNCOMPRESSED_SIZE_KB=$(expr 23 \* 1024) # 23552 KB
1313

1414

1515
LAYER_FILES_PREFIX="datadog_lambda_py"

0 commit comments

Comments
 (0)