|
|
@ -1628,7 +1628,7 @@ function saveCache(cacheId, archivePath) {
|
|
|
|
while (offset < fileSize) {
|
|
|
|
while (offset < fileSize) {
|
|
|
|
const chunkSize = offset + MAX_CHUNK_SIZE > fileSize ? fileSize - offset : MAX_CHUNK_SIZE;
|
|
|
|
const chunkSize = offset + MAX_CHUNK_SIZE > fileSize ? fileSize - offset : MAX_CHUNK_SIZE;
|
|
|
|
const end = offset + chunkSize - 1;
|
|
|
|
const end = offset + chunkSize - 1;
|
|
|
|
const chunk = fs.createReadStream(archivePath, { fd, start: offset, end });
|
|
|
|
const chunk = fs.createReadStream(archivePath, { fd, start: offset, end, autoClose: false });
|
|
|
|
uploads.push(yield uploadChunk(restClient, resourceUrl, chunk, offset, end)); // Making this serial
|
|
|
|
uploads.push(yield uploadChunk(restClient, resourceUrl, chunk, offset, end)); // Making this serial
|
|
|
|
offset += MAX_CHUNK_SIZE;
|
|
|
|
offset += MAX_CHUNK_SIZE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|