From 8e1423603d810b0194a7b4148a9ae3ad9e7dd2c1 Mon Sep 17 00:00:00 2001 From: Rob Herley Date: Sat, 18 Nov 2023 00:11:04 -0500 Subject: [PATCH] adj comp --- dist/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dist/index.js b/dist/index.js index edc078dd..ddc7afb0 100644 --- a/dist/index.js +++ b/dist/index.js @@ -5139,7 +5139,7 @@ const os_1 = __importDefault(__nccwpck_require__(22037)); // Used for controlling the highWaterMark value of the zip that is being streamed // The same value is used as the chunk size that is use during upload to blob storage function getUploadChunkSize() { - return 128 * 1024 * 1024; + return 16 * 1024 * 1024; } exports.getUploadChunkSize = getUploadChunkSize; function getRuntimeToken() { @@ -5823,7 +5823,7 @@ exports.ZipUploadStream = ZipUploadStream; function createZipUploadStream(uploadSpecification) { return __awaiter(this, void 0, void 0, function* () { const zip = archiver.create('zip', { - zlib: { level: 9 } // Sets the compression level. + zlib: { level: 1 } // Sets the compression level. // Available options are 0-9 // 0 => no compression // 1 => fastest with low compression