mirror of
https://github.com/postgrespro/pg_probackup.git
synced 2024-11-24 08:52:38 +02:00
print correct stop_lsn after execution of pg_stop_backup()
This commit is contained in:
parent
889465b0ec
commit
c926ae90ea
@ -1865,7 +1865,7 @@ pg_stop_backup(pgBackup *backup, PGconn *pg_startbackup_conn,
|
||||
}
|
||||
|
||||
elog(LOG, "stop_lsn: %X/%X",
|
||||
(uint32) (stop_backup_lsn >> 32), (uint32) (stop_backup_lsn));
|
||||
(uint32) (stop_backup_lsn_tmp >> 32), (uint32) (stop_backup_lsn_tmp));
|
||||
|
||||
/* Write backup_label and tablespace_map */
|
||||
if (!exclusive_backup)
|
||||
|
Loading…
Reference in New Issue
Block a user