mirror of
https://github.com/actions/cache.git
synced 2025-04-21 11:36:45 +00:00
Add missing await
This commit is contained in:
parent
289c5d2518
commit
14055801c2
3 changed files with 3 additions and 3 deletions
2
dist/restore/index.js
vendored
2
dist/restore/index.js
vendored
|
@ -1626,7 +1626,7 @@ function uploadFile(restClient, cacheId, archivePath) {
|
|||
const threads = new Array(concurrency);
|
||||
core.debug("Awaiting all uploads");
|
||||
let offset = 0;
|
||||
Promise.all(threads.map(() => __awaiter(this, void 0, void 0, function* () {
|
||||
yield Promise.all(threads.map(() => __awaiter(this, void 0, void 0, function* () {
|
||||
while (offset < fileSize) {
|
||||
const chunkSize = offset + MAX_CHUNK_SIZE > fileSize ? fileSize - offset : MAX_CHUNK_SIZE;
|
||||
const start = offset;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue