Skip to content

Commit a0f53e3

Browse files
committed
Do not set cache upload/download concurrency
Signed-off-by: Sora Morimoto <sora@morimoto.io>
1 parent dc81e98 commit a0f53e3

File tree

3 files changed

+2
-7
lines changed

3 files changed

+2
-7
lines changed

dist/index.cjs

+1-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/post/index.cjs

+1-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/setup-ocaml/src/cache.ts

-2
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,6 @@ async function restoreCache(
112112
async () =>
113113
await cache.restoreCache(paths, key, restoreKeys, {
114114
useAzureSdk: true,
115-
downloadConcurrency: 8,
116115
...options,
117116
}),
118117
{ numOfAttempts: 5 },
@@ -146,7 +145,6 @@ async function saveCache(key: string, paths: string[]) {
146145
async () =>
147146
await cache.saveCache(paths, key, {
148147
useAzureSdk: true,
149-
uploadConcurrency: 8,
150148
}),
151149
{ numOfAttempts: 5 },
152150
);

0 commit comments

Comments
 (0)