Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 20e12ed

Browse files
committedNov 23, 2022
fix one of backup_id output.
1 parent 22e6c40 commit 20e12ed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/backup.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -604,7 +604,7 @@ do_backup_pg(InstanceState *instanceState, PGconn *backup_conn,
604604
"It may indicate that we are trying to backup PostgreSQL instance from the past.",
605605
(uint32) (current.stop_lsn >> 32), (uint32) (current.stop_lsn),
606606
(uint32) (prev_backup->stop_lsn >> 32), (uint32) (prev_backup->stop_lsn),
607-
base36enc(prev_backup->stop_lsn));
607+
base36enc(prev_backup->start_time));
608608

609609
/* clean external directories list */
610610
if (external_dirs)

0 commit comments

Comments
 (0)
Please sign in to comment.