diff options
author | Michael Paquier <michael@paquier.xyz> | 2019-10-31 10:22:24 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2019-10-31 10:22:24 +0900 |
commit | f921ea624eb8695c6ccaaf3410b9f9d9926d71c7 (patch) | |
tree | cb36b18c0385ebc8e2e8dbee5dc44b282509c504 | |
parent | c5e1df951d9d70ab7d53ce47caaf73f3b2d6b1e1 (diff) | |
download | postgresql-f921ea624eb8695c6ccaaf3410b9f9d9926d71c7.tar.gz |
Fix typo in comment of syncrep.c
Author: Kyotaro Horiguchi
Discussion: https://postgr.es/m/20191030.123428.18823202335157111.horikyota.ntt@gmail.com
-rw-r--r-- | src/backend/replication/syncrep.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/replication/syncrep.c b/src/backend/replication/syncrep.c index a21f7d3347..16aee1de4c 100644 --- a/src/backend/replication/syncrep.c +++ b/src/backend/replication/syncrep.c @@ -1065,8 +1065,8 @@ SyncRepUpdateSyncStandbysDefined(void) /* * If synchronous_standby_names has been reset to empty, it's futile - * for backends to continue to waiting. Since the user no longer - * wants synchronous replication, we'd better wake them up. + * for backends to continue waiting. Since the user no longer wants + * synchronous replication, we'd better wake them up. */ if (!sync_standbys_defined) { |