From 29edb130cc90f5fb088c8723198cdca08ae902af Mon Sep 17 00:00:00 2001 From: Pierre Date: Thu, 30 Dec 2021 16:49:59 +1100 Subject: [PATCH] Update install/src/command.rs Co-authored-by: Trent Nelson --- install/src/command.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/src/command.rs b/install/src/command.rs index 8c0e002eaf..ad4b0341f2 100644 --- a/install/src/command.rs +++ b/install/src/command.rs @@ -92,7 +92,7 @@ fn download_to_temp( let temp_file = temp_dir.path().join("download"); let client = reqwest::blocking::Client::builder() - .connect_timeout(Duration::from_secs(5)) + .connect_timeout(Duration::from_secs(30)) .timeout(None) .build()?;