Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion crates/network/artifacts/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,7 @@ async fn download_https_file(uri: &str) -> Result<Bytes> {
let client = reqwest::Client::new();
let res = client
.get(uri)
.timeout(Duration::from_secs(60))
.timeout(Duration::from_secs(90))
.send()
.await
.context("Failed to GET HTTPS URL")?;
Expand Down
Loading