From: Peter Eisentraut Date: Thu, 6 Nov 2025 09:22:29 +0000 (+0100) Subject: Fix redundancy in error message X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=150e24501bc218057a7b9a24b19a145fa8b5c678;p=thirdparty%2Fpostgresql.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 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)); }