Skip to content

Commit 5e3fc47

Browse files
authored
Fix misleading orchestrator client error level log (#4437)
* fix no orchestrator err * fix comment
1 parent 36b751e commit 5e3fc47

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)