From f9a540807fdeccb5352d5ff0429cc508d9b62b67 Mon Sep 17 00:00:00 2001 From: imabdulbasit Date: Fri, 5 Jun 2026 17:10:49 +0500 Subject: [PATCH 1/2] fix no orchestrator err --- crates/espresso/node/src/context.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/crates/espresso/node/src/context.rs b/crates/espresso/node/src/context.rs index 2bd21fb4a14..2092cac4f0c 100644 --- a/crates/espresso/node/src/context.rs +++ b/crates/espresso/node/src/context.rs @@ -460,7 +460,10 @@ where .wait_for_all_nodes_ready(peer_config) .await; } else { - tracing::error!("Cannot get info from orchestrator client"); + // the network config was loaded from storage or fetched from + // peers, so there is no orchestrated start to wait for. This is the normal path + // for a node rejoining an existing network. + tracing::info!("no orchestrator configured"); } tracing::warn!("starting consensus"); self.consensus_handle.start_consensus().await; From 9eeda95ab7650a424ea40d8916827ac5490423f8 Mon Sep 17 00:00:00 2001 From: imabdulbasit Date: Fri, 5 Jun 2026 17:18:20 +0500 Subject: [PATCH 2/2] fix comment --- crates/espresso/node/src/context.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/espresso/node/src/context.rs b/crates/espresso/node/src/context.rs index 2092cac4f0c..43afa1fbd6b 100644 --- a/crates/espresso/node/src/context.rs +++ b/crates/espresso/node/src/context.rs @@ -461,8 +461,8 @@ where .await; } else { // the network config was loaded from storage or fetched from - // peers, so there is no orchestrated start to wait for. This is the normal path - // for a node rejoining an existing network. + // peers, so there is no need of orchestrator + // This is the normal path for a node rejoining an existing network. tracing::info!("no orchestrator configured"); } tracing::warn!("starting consensus");