Increase the wait duration of kurtosis

This commit is contained in:
Omar Abdulla
2025-09-28 15:33:20 +03:00
parent ecd6252666
commit 93f6e5efdf
+1 -1
View File
@@ -279,7 +279,7 @@ impl LighthouseGethNode {
.stderr(stderr); .stderr(stderr);
}, },
ProcessReadinessWaitBehavior::TimeBoundedWaitFunction { ProcessReadinessWaitBehavior::TimeBoundedWaitFunction {
max_wait_duration: Duration::from_secs(5 * 60), max_wait_duration: Duration::from_secs(15 * 60),
check_function: Box::new(|stdout, stderr| { check_function: Box::new(|stdout, stderr| {
for line in [stdout, stderr].iter().flatten() { for line in [stdout, stderr].iter().flatten() {
if line.to_lowercase().contains("error encountered") { if line.to_lowercase().contains("error encountered") {