Fix redundancy in error message
authorPeter Eisentraut <peter@eisentraut.org>
Thu, 6 Nov 2025 09:22:29 +0000 (10:22 +0100)
committerPeter Eisentraut <peter@eisentraut.org>
Thu, 6 Nov 2025 09:23:40 +0000 (10:23 +0100)
Discussion: https://www.postgresql.org/message-id/flat/E1vEsbx-004QDO-0o%40gemulon.postgresql.org

src/bin/pg_basebackup/pg_createsubscriber.c

index 95c96d205f1c6a4e8bd3b252bad26a21695535dc..bad464136e255ede57733d4a1c307997254fa8dd 100644 (file)
@@ -668,7 +668,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));
    }