From: Peter Eisentraut Date: Thu, 6 Nov 2025 09:22:29 +0000 (+0100) Subject: Fix redundancy in error message X-Git-Tag: REL_18_1~13 X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=83122538f2f0354970cd5209a90abc677f32384e;p=postgresql.git Fix redundancy in error message Discussion: https://www.postgresql.org/message-id/flat/E1vEsbx-004QDO-0o%40gemulon.postgresql.org --- diff --git a/src/bin/pg_basebackup/pg_createsubscriber.c b/src/bin/pg_basebackup/pg_createsubscriber.c index 2469c56d446..95f127d09fc 100644 --- a/src/bin/pg_basebackup/pg_createsubscriber.c +++ b/src/bin/pg_basebackup/pg_createsubscriber.c @@ -704,7 +704,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)); }