From e5359fc1cefc890794dc252d1ad3533a74229af2 Mon Sep 17 00:00:00 2001 From: Sahan Paliskara Date: Mon, 5 May 2025 16:54:49 -0700 Subject: [PATCH] extend timeout --- src/service/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/service/mod.rs b/src/service/mod.rs index a9198ca..76b1731 100644 --- a/src/service/mod.rs +++ b/src/service/mod.rs @@ -126,7 +126,7 @@ pub async fn submit_solution>( let resp = client .post(&url) .multipart(form) - .timeout(Duration::from_secs(300)) + .timeout(Duration::from_secs(3600)) .send() .await?;