summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Eisentraut <peter@eisentraut.org>2025-11-06 10:22:29 +0100
committerPeter Eisentraut <peter@eisentraut.org>2025-11-06 10:47:45 +0100
commit150e24501bc218057a7b9a24b19a145fa8b5c678 (patch)
tree36e6767ec1ac69824a2be875a173ff53925b823a
parent07b3df5d00cb01b024ee3c080cf15cee69ee3d95 (diff)
Fix redundancy in error message
Discussion: https://www.postgresql.org/message-id/flat/E1vEsbx-004QDO-0o%40gemulon.postgresql.org
-rw-r--r--src/bin/pg_basebackup/pg_createsubscriber.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/pg_basebackup/pg_createsubscriber.c b/src/bin/pg_basebackup/pg_createsubscriber.c
index c1120d3643e..df41836e70f 100644
--- a/src/bin/pg_basebackup/pg_createsubscriber.c
+++ b/src/bin/pg_basebackup/pg_createsubscriber.c
@@ -707,7 +707,7 @@ modify_subscriber_sysid(const struct CreateSubscriberOptions *opt)
int rc = system(cmd_str);
if (rc == 0)
- pg_log_info("subscriber successfully reset WAL on the subscriber");
+ pg_log_info("successfully reset WAL on the subscriber");
else
pg_fatal("could not reset WAL on subscriber: %s", wait_result_to_str(rc));
}