]> git.ipfire.org Git - thirdparty/postgresql.git/commitdiff
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:47:45 +0000 (10:47 +0100)
Discussion: https://www.postgresql.org/message-id/flat/E1vEsbx-004QDO-0o%40gemulon.postgresql.org

src/bin/pg_basebackup/pg_createsubscriber.c

index c1120d3643e7008d2df057598d3cb3dcbd6e196f..df41836e70f05246d36ac632fe4529c98f1f6d47 100644 (file)
@@ -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));
        }