Skip to content

Commit 39217ce

Browse files
committed
Fix bug in pg_receivexlog --verbose.
In 9.2, pg_receivexlog with verbose option has emitted the messages at the end of each WAL file. But the commit 0b63291 suppressed such messages by mistake. This commit fixes the bug so that pg_receivexlog --verbose outputs such messages again. Back-patch to 9.3 where the bug was added.
1 parent 8c4fdfb commit 39217ce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bin/pg_basebackup/receivelog.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1082,7 +1082,7 @@ HandleCopyStream(PGconn *conn, XLogRecPtr startpos, uint32 timeline,
10821082

10831083
xlogoff = 0;
10841084

1085-
if (still_sending && stream_stop(blockpos, timeline, false))
1085+
if (still_sending && stream_stop(blockpos, timeline, true))
10861086
{
10871087
if (PQputCopyEnd(conn, NULL) <= 0 || PQflush(conn))
10881088
{

0 commit comments

Comments
 (0)