Unverified Commit 8d0a5eba authored by Yan Ru Pei's avatar Yan Ru Pei Committed by GitHub
Browse files

chore: don't error on failure to download snapshot (#3871)


Signed-off-by: default avatarPeaBrane <yanrpei@gmail.com>
parent 8354d325
...@@ -226,9 +226,9 @@ pub async fn start_kv_router_background( ...@@ -226,9 +226,9 @@ pub async fn start_kv_router_background(
} }
tracing::info!("Successfully sent all initial events to indexer"); tracing::info!("Successfully sent all initial events to indexer");
} }
Err(e) => { Err(_) => {
tracing::info!( tracing::debug!(
"Did not initialize radix state from NATS object store (likely no snapshots yet): {e:?}" "Failed to download snapshots. This is normal for freshly started Router replicas."
); );
} }
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment