mirror of
https://github.com/neondatabase/neon.git
synced 2026-05-28 10:30:40 +00:00
storcon: include timeline ID in LSN waiting logs (#9141)
## Problem Hard to tell which timeline is holding the migration. ## Summary of Changes Add timeline id to log.
This commit is contained in:
@@ -463,7 +463,7 @@ impl Reconciler {
|
||||
for (timeline_id, baseline_lsn) in &baseline {
|
||||
match latest.get(timeline_id) {
|
||||
Some(latest_lsn) => {
|
||||
tracing::info!("🕑 LSN origin {baseline_lsn} vs destination {latest_lsn}");
|
||||
tracing::info!(timeline_id = %timeline_id, "🕑 LSN origin {baseline_lsn} vs destination {latest_lsn}");
|
||||
if latest_lsn < baseline_lsn {
|
||||
any_behind = true;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user