Skip to content

Commit 1bfcb4a

Browse files
bonigarciadiemol
andauthored
[rust] Increase default timeout in Selenium Manager to 180 seconds (#12058)
Co-authored-by: Diego Molina <[email protected]>
1 parent 76701ad commit 1bfcb4a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

rust/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Options:
3636
--proxy <PROXY>
3737
HTTP proxy for network connection (e.g., https://myproxy.net:8080)
3838
--timeout <TIMEOUT>
39-
Timeout for network requests (in seconds) [default: 120]
39+
Timeout for network requests (in seconds) [default: 180]
4040
--driver-ttl <DRIVER_TTL>
4141
Driver TTL (time-to-live) [default: 86400]
4242
--browser-ttl <BROWSER_TTL>

rust/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ pub mod mirror;
5454
pub mod safari;
5555
pub mod safaritp;
5656

57-
pub const REQUEST_TIMEOUT_SEC: u64 = 120; // The timeout is applied from when the request starts connecting until the response body has finished
57+
pub const REQUEST_TIMEOUT_SEC: u64 = 180; // The timeout is applied from when the request starts connecting until the response body has finished
5858
pub const STABLE: &str = "stable";
5959
pub const BETA: &str = "beta";
6060
pub const DEV: &str = "dev";

0 commit comments

Comments
 (0)