Skip to content

Commit 278f1f6

Browse files
authored
Merge pull request #245 from HRanjan-11/CYP-685
Cyp 685 - increasing zip file size limit
2 parents 85ad1cf + c54ff81 commit 278f1f6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

commands/utils/uploader.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ function upload_zip(lt_config, file_name, prefix = "project", env = "prod") {
4949
let fileSizeInBytes = stats.size;
5050
//Convert the file size to megabytes (optional)
5151
let fileSizeInMegabytes = fileSizeInBytes / 1000000.0;
52-
if (fileSizeInMegabytes > 200) {
53-
reject("File Size exceed 200 MB limit");
52+
if (fileSizeInMegabytes > 400) {
53+
reject("File Size exceeds 400 MB limit");
5454
return;
5555
}
5656
get_signed_url(lt_config, prefix, env)

0 commit comments

Comments
 (0)