From 48c45fd4b3d36ac8bc1d6b0b5be1beb498f714b4 Mon Sep 17 00:00:00 2001 From: andrussal Date: Fri, 17 Jul 2026 11:19:06 +0200 Subject: [PATCH] fix(tf): forward node readiness control --- testing-framework/deployers/local/src/manual/mod.rs | 4 ++++ testing-framework/deployers/local/src/node_control/mod.rs | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/testing-framework/deployers/local/src/manual/mod.rs b/testing-framework/deployers/local/src/manual/mod.rs index 6214044..bd26aef 100644 --- a/testing-framework/deployers/local/src/manual/mod.rs +++ b/testing-framework/deployers/local/src/manual/mod.rs @@ -128,6 +128,10 @@ impl NodeControlHandle for ManualCluster { self.cluster.start_node_with(name, options).await } + async fn wait_node_ready(&self, name: &str) -> Result<(), DynError> { + self.cluster.wait_node_ready(name).await.map_err(Into::into) + } + fn node_client(&self, name: &str) -> Option { self.cluster.node_client(name) } diff --git a/testing-framework/deployers/local/src/node_control/mod.rs b/testing-framework/deployers/local/src/node_control/mod.rs index 8dccf56..20d1ab0 100644 --- a/testing-framework/deployers/local/src/node_control/mod.rs +++ b/testing-framework/deployers/local/src/node_control/mod.rs @@ -577,6 +577,10 @@ impl NodeControlHandle for NodeManager { .map_err(|err| err.into()) } + async fn wait_node_ready(&self, name: &str) -> Result<(), DynError> { + self.wait_node_ready(name).await.map_err(|err| err.into()) + } + fn node_client(&self, name: &str) -> Option { self.node_client(name) }