mirror of
https://github.com/neondatabase/neon.git
synced 2026-05-18 21:50:37 +00:00
try to repro
This commit is contained in:
@@ -6,6 +6,7 @@ use std::ops::{Add, AddAssign};
|
||||
use std::path::Path;
|
||||
use std::str::FromStr;
|
||||
use std::sync::atomic::{AtomicU64, Ordering};
|
||||
use tracing::info;
|
||||
|
||||
use crate::seqwait::MonotonicCounter;
|
||||
|
||||
@@ -239,6 +240,7 @@ impl MonotonicCounter<Lsn> for RecordLsn {
|
||||
let new_prev = self.last;
|
||||
self.last = lsn;
|
||||
self.prev = new_prev;
|
||||
info!("advanced record lsn to {}/{}", self.last, self.prev);
|
||||
}
|
||||
fn cnt_value(&self) -> Lsn {
|
||||
self.last
|
||||
|
||||
Reference in New Issue
Block a user