increase flow zombie timeout to 30

This commit is contained in:
Ruben Fiszel
2024-02-25 18:29:28 +01:00
parent 32a45b544d
commit 7207c0c801
+1 -1
View File
@@ -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::<String>().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")