mirror of
https://code.forgejo.org/actions/cache.git
synced 2025-04-23 03:45:31 +00:00
?
This commit is contained in:
parent
14055801c2
commit
574cd74b58
3 changed files with 7 additions and 0 deletions
|
@ -190,10 +190,13 @@ async function uploadFile(restClient: RestClient, cacheId: number, archivePath:
|
|||
const chunkSize = offset + MAX_CHUNK_SIZE > fileSize ? fileSize - offset : MAX_CHUNK_SIZE;
|
||||
const start = offset;
|
||||
const end = offset + chunkSize - 1;
|
||||
core.debug(`Start: ${start} End: ${end}`);
|
||||
offset += MAX_CHUNK_SIZE; // Do this before losing thread during await?
|
||||
const chunk = fs.createReadStream(archivePath, { fd, start, end, autoClose: false });
|
||||
responses.push(await uploadChunk(restClient, resourceUrl, chunk, start, end));
|
||||
}
|
||||
|
||||
return Promise.resolve();
|
||||
}));
|
||||
|
||||
fs.closeSync(fd);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue