From 93f6e5efdfaff5c4dc10c14721174c303a286e33 Mon Sep 17 00:00:00 2001 From: Omar Abdulla Date: Sun, 28 Sep 2025 15:33:20 +0300 Subject: [PATCH] Increase the wait duration of kurtosis --- crates/node/src/lighthouse_geth.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/node/src/lighthouse_geth.rs b/crates/node/src/lighthouse_geth.rs index 44c6066..7029c68 100644 --- a/crates/node/src/lighthouse_geth.rs +++ b/crates/node/src/lighthouse_geth.rs @@ -279,7 +279,7 @@ impl LighthouseGethNode { .stderr(stderr); }, ProcessReadinessWaitBehavior::TimeBoundedWaitFunction { - max_wait_duration: Duration::from_secs(5 * 60), + max_wait_duration: Duration::from_secs(15 * 60), check_function: Box::new(|stdout, stderr| { for line in [stdout, stderr].iter().flatten() { if line.to_lowercase().contains("error encountered") {