From fe7704133d3db2879ad145e78c7745ccf304351e Mon Sep 17 00:00:00 2001 From: Josh Gross Date: Mon, 23 Dec 2019 10:52:37 -0500 Subject: [PATCH] Format default chunk size --- src/cacheHttpClient.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cacheHttpClient.ts b/src/cacheHttpClient.ts index 7d3e348..16651cf 100644 --- a/src/cacheHttpClient.ts +++ b/src/cacheHttpClient.ts @@ -201,7 +201,7 @@ async function uploadFile( const fd = fs.openSync(archivePath, "r"); const concurrency = Number(process.env["CACHE_UPLOAD_CONCURRENCY"]) ?? 4; // # of HTTP requests in parallel - const MAX_CHUNK_SIZE = Number(process.env["CACHE_UPLOAD_CHUNK_SIZE"]) ?? 32000000; // 32 MB Chunks + const MAX_CHUNK_SIZE = Number(process.env["CACHE_UPLOAD_CHUNK_SIZE"]) ?? (32 * 1024 * 1024); // 32 MB Chunks core.debug(`Concurrency: ${concurrency} and Chunk Size: ${MAX_CHUNK_SIZE}`); const parallelUploads = [...new Array(concurrency).keys()];