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:36 +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 2469c56d446e439b3c6c2d656566bf0fe20c34ea..95f127d09fcf970fce5f153a93d320dd4b8b6ea8 100644 (file)
@@ -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));
    }