Skip to content

Commit ca22926

Browse files
committed
rust: increase release artifact download parallelism
This appears to help a little on my 1 gbps Internet.
1 parent f671908 commit ca22926

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
@@ -206,7 +206,7 @@ pub async fn command_fetch_release_distributions(args: &ArgMatches) -> Result<()
206206
}
207207
}
208208

209-
let mut buffered = futures::stream::iter(fs).buffer_unordered(8);
209+
let mut buffered = futures::stream::iter(fs).buffer_unordered(24);
210210

211211
let mut install_paths = vec![];
212212

0 commit comments

Comments
 (0)