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) }