Skip to content

Commit e9d21a3

Browse files
committed
fix(artifacts): increase timeout
1 parent 55b632b commit e9d21a3

File tree

1 file changed

+1
-1
lines changed
  • crates/network/artifacts/src

1 file changed

+1
-1
lines changed

crates/network/artifacts/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -435,7 +435,7 @@ async fn download_https_file(uri: &str) -> Result<Bytes> {
435435
let client = reqwest::Client::new();
436436
let res = client
437437
.get(uri)
438-
.timeout(Duration::from_secs(60))
438+
.timeout(Duration::from_secs(90))
439439
.send()
440440
.await
441441
.context("Failed to GET HTTPS URL")?;

0 commit comments

Comments
 (0)