Adjusted API Timeout to 5 Minutes

This commit is contained in:
brotoskyj
2025-11-11 12:19:09 -05:00
parent 392060e9fa
commit e13382626b
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -205,7 +205,7 @@ fn build_client(py: Python<'_>, py_self: &Py<PyAny>) -> Client {
Client::builder()
.danger_accept_invalid_certs(true)
.default_headers(header_map)
.timeout(std::time::Duration::from_secs(120))
.timeout(std::time::Duration::from_secs(300))
.build()
.unwrap()
}