diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/main.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs index 5a5377a..482ec53 100644 --- a/src/main.rs +++ b/src/main.rs @@ -205,6 +205,8 @@ fn upload_log(file: &Path, url: &str) -> Result<String> { .post(url) .query(&[("json", 1)]) .multipart(form) + // dps.report internal processing timeout is 15 mins + .timeout(Duration::from_secs(60 * 15)) .send()? .error_for_status()? .json()?; |