Skip to content

Commit e4ea662

Browse files
authored
Merge pull request #146397 from cockroachdb/blathers/backport-release-25.2-145573
release-25.2: crosscluster/physical: add verbose logging to reader standby job
2 parents a3e91f0 + 8c87ea3 commit e4ea662

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

pkg/crosscluster/physical/standby_read_ts_poller_job.go

+4
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,10 @@ func (r *standbyReadTSPollerResumer) poll(ctx context.Context, execCfg *sql.Exec
140140
if replicatedTime.Equal(previousReplicatedTimestamp) {
141141
continue
142142
}
143+
if log.V(1) {
144+
log.Infof(ctx, "attempting to advance reader tenant catalog to %s",
145+
replicatedTime)
146+
}
143147
previousReplicatedTimestamp = replicatedTime
144148
if err = replication.SetupOrAdvanceStandbyReaderCatalog(
145149
ctx,

0 commit comments

Comments
 (0)