Skip to content

Commit 82a038f

Browse files
committed
rust: increase release artifact upload parallelism
My 1 gbps Internet wasn't satured at previous parallelism.
1 parent a8a918e commit 82a038f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/github.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -418,7 +418,7 @@ pub async fn command_upload_release_distributions(args: &ArgMatches) -> Result<(
418418
));
419419
}
420420

421-
let mut buffered = futures::stream::iter(fs).buffer_unordered(6);
421+
let mut buffered = futures::stream::iter(fs).buffer_unordered(16);
422422

423423
while let Some(res) = buffered.next().await {
424424
res?;

0 commit comments

Comments
 (0)