Skip to content

Commit 60eb883

Browse files
[Backport release-ff-upgrade-test] Fix misleading orchestrator client error level log (#4438)
Fix misleading `orchestrator client` error level log (#4437) * fix no orchestrator err * fix comment (cherry picked from commit 5e3fc47) Co-authored-by: Abdul Basit <45506001+imabdulbasit@users.noreply.github.com>
1 parent 193b95e commit 60eb883

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

crates/espresso/node/src/context.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -460,7 +460,10 @@ where
460460
.wait_for_all_nodes_ready(peer_config)
461461
.await;
462462
} else {
463-
tracing::error!("Cannot get info from orchestrator client");
463+
// the network config was loaded from storage or fetched from
464+
// peers, so there is no need of orchestrator
465+
// This is the normal path for a node rejoining an existing network.
466+
tracing::info!("no orchestrator configured");
464467
}
465468
tracing::warn!("starting consensus");
466469
self.consensus_handle.start_consensus().await;

0 commit comments

Comments
 (0)