We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 78f8f55 commit 8f4145aCopy full SHA for 8f4145a
1 file changed
src/commands/benchmark-job/logs.ts
@@ -272,7 +272,7 @@ async function runWithConcurrency<T>(
272
{ length: Math.min(maxConcurrency, tasks.length) },
273
() => worker(),
274
);
275
- await Promise.all(workers);
+ await Promise.allSettled(workers);
276
return results;
277
}
278
@@ -349,7 +349,8 @@ export async function downloadBenchmarkJobLogs(
349
`\nDownloading logs for ${targets.length} scenario run(s) to ${chalk.bold(outputDir)}\n`,
350
351
352
- // Download logs in parallel with a max concurrency of 50
+ // Download logs in parallel with a max concurrency of 50.
353
+ // Bumping to 100 yields no improvement in simple manual testing.
354
const MAX_CONCURRENCY = 50;
355
let succeeded = 0;
356
0 commit comments