diff options
Diffstat (limited to 'src/bin/pg_basebackup/receivelog.c')
-rw-r--r-- | src/bin/pg_basebackup/receivelog.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/bin/pg_basebackup/receivelog.c b/src/bin/pg_basebackup/receivelog.c index 1b79c002755..cf730da283a 100644 --- a/src/bin/pg_basebackup/receivelog.c +++ b/src/bin/pg_basebackup/receivelog.c @@ -456,15 +456,15 @@ ReceiveXlogStream(PGconn *conn, StreamCtl *stream) return false; /* - * Decide whether we want to report the flush position. If we report - * the flush position, the primary will know what WAL we'll - * possibly re-request, and it can then remove older WAL safely. - * We must always do that when we are using slots. + * Decide whether we want to report the flush position. If we report the + * flush position, the primary will know what WAL we'll possibly + * re-request, and it can then remove older WAL safely. We must always do + * that when we are using slots. * * Reporting the flush position makes one eligible as a synchronous * replica. People shouldn't include generic names in - * synchronous_standby_names, but we've protected them against it so - * far, so let's continue to do so unless specifically requested. + * synchronous_standby_names, but we've protected them against it so far, + * so let's continue to do so unless specifically requested. */ if (stream->replication_slot != NULL) { |