From 6eb5ca5ba974415c94508f5feada91da82f492e4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot] (aider)" Date: Tue, 20 May 2025 12:47:43 +0000 Subject: [PATCH] chore: Increase flow status update warning timeout --- backend/windmill-worker/src/result_processor.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/windmill-worker/src/result_processor.rs b/backend/windmill-worker/src/result_processor.rs index 07496e18e7..b51ba75518 100644 --- a/backend/windmill-worker/src/result_processor.rs +++ b/backend/windmill-worker/src/result_processor.rs @@ -543,7 +543,7 @@ pub async fn process_completed_job( #[cfg(feature = "benchmark")] bench, ) - .warn_after_seconds(10) + .warn_after_seconds(20) .await?; add_time!(bench, "updated flow status END"); return Ok(r);