From d84f776943a97ab3105269e3167274dc439c1bef Mon Sep 17 00:00:00 2001 From: neriumpete Date: Tue, 8 Sep 2026 13:21:08 +0300 Subject: [PATCH] node: warn and name both node ids when no block ingestion runs --- node/src/launcher.rs | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/node/src/launcher.rs b/node/src/launcher.rs index 18ee4c727db..2ea72a6f790 100644 --- a/node/src/launcher.rs +++ b/node/src/launcher.rs @@ -594,9 +594,13 @@ pub async fn run( "Block ingestor disabled by --disable-block-ingestor" ); } else { - info!( + warn!( logger, - "Not running block ingestion, ingestor is `{}`", config.chains.ingestor + "Not running block ingestion: this node is `{}` but `[chains] ingestor` is `{}`. \ + Ingestion runs only on the node whose `--node-id` matches that value; if no \ + running node has it, the chain head will not advance", + config.node, + config.chains.ingestor ); }