1
0
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:
Grigory Smolkin 2020-06-07 16:52:15 +03:00
parent 889465b0ec
commit c926ae90ea

View File

@ -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)