Skip to content

Commit 261c6f0

Browse files
committed
rust: increase download parallel of GitHub artifacts
I suspect release automation is CPU bottlenecked on zipping. But this may alleivate a network bottleneck, as GitHub Actions artifact downloads are often very slow.
1 parent 8280d0b commit 261c6f0

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
@@ -171,7 +171,7 @@ pub async fn command_fetch_release_distributions(args: &ArgMatches) -> Result<()
171171
}
172172
}
173173

174-
let mut buffered = futures::stream::iter(fs).buffer_unordered(4);
174+
let mut buffered = futures::stream::iter(fs).buffer_unordered(8);
175175

176176
let mut install_paths = vec![];
177177

0 commit comments

Comments
 (0)