From 7207c0c801ddf12cbf04fe9f7b05b3ace7c4e71d Mon Sep 17 00:00:00 2001 From: Ruben Fiszel Date: Sun, 25 Feb 2024 18:29:28 +0100 Subject: [PATCH] increase flow zombie timeout to 30 --- backend/src/monitor.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/monitor.rs b/backend/src/monitor.rs index 0f18ba06e0..7a83f76393 100644 --- a/backend/src/monitor.rs +++ b/backend/src/monitor.rs @@ -56,7 +56,7 @@ lazy_static::lazy_static! { static ref FLOW_ZOMBIE_TRANSITION_TIMEOUT: String = std::env::var("FLOW_ZOMBIE_TRANSITION_TIMEOUT") .ok() .and_then(|x| x.parse::().ok()) - .unwrap_or_else(|| "10".to_string()); + .unwrap_or_else(|| "30".to_string()); pub static ref RESTART_ZOMBIE_JOBS: bool = std::env::var("RESTART_ZOMBIE_JOBS")