Skip to content

Commit 985696c

Browse files
committed
TCLOUD-4780: Increased parallel s3 operations to 20
1 parent 14d9028 commit 985696c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/scripts/generate_redirects.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -353,7 +353,7 @@ const main = async () => {
353353
if (parallelValue != null && !/^\d+$/.test(parallelValue)) {
354354
return Promise.reject(`Invalid value for --parallel, got ${parallelValue}`);
355355
}
356-
const parallel = parallelValue != null ? parseInt(parallelValue, 10) : 5;
356+
const parallel = parallelValue != null ? parseInt(parallelValue, 10) : 20;
357357
if (args.length !== 2) {
358358
return Promise.reject(`Expected 2 values, got ${args.length}`);
359359
}

0 commit comments

Comments
 (0)