aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/main.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs
index 6352bff..3e84e2d 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -250,6 +250,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()?;