From b7ddb2da920f4507c335536470c1574b8edb0cc4 Mon Sep 17 00:00:00 2001 From: Omar Abdulla Date: Mon, 4 Aug 2025 15:30:43 +0300 Subject: [PATCH] Increase kitchensink wait time to 60 seconds --- crates/node/src/kitchensink.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/node/src/kitchensink.rs b/crates/node/src/kitchensink.rs index a0a6f54..126b972 100644 --- a/crates/node/src/kitchensink.rs +++ b/crates/node/src/kitchensink.rs @@ -209,7 +209,7 @@ impl KitchensinkNode { if let Err(error) = Self::wait_ready( self.kitchensink_stderr_log_file_path().as_path(), Self::SUBSTRATE_READY_MARKER, - Duration::from_secs(30), + Duration::from_secs(60), ) { tracing::error!( ?error, @@ -238,7 +238,7 @@ impl KitchensinkNode { if let Err(error) = Self::wait_ready( self.proxy_stderr_log_file_path().as_path(), Self::ETH_PROXY_READY_MARKER, - Duration::from_secs(30), + Duration::from_secs(60), ) { tracing::error!(?error, "Failed to start proxy, shutting down gracefully"); self.shutdown()?;