1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-09 06:21:09 +03:00

Fix redundancy in error message

Discussion: https://www.postgresql.org/message-id/flat/E1vEsbx-004QDO-0o%40gemulon.postgresql.org
This commit is contained in:
Peter Eisentraut
2025-11-06 10:22:29 +01:00
parent 07b3df5d00
commit 150e24501b

View File

@@ -707,7 +707,7 @@ modify_subscriber_sysid(const struct CreateSubscriberOptions *opt)
int rc = system(cmd_str); int rc = system(cmd_str);
if (rc == 0) if (rc == 0)
pg_log_info("subscriber successfully reset WAL on the subscriber"); pg_log_info("successfully reset WAL on the subscriber");
else else
pg_fatal("could not reset WAL on subscriber: %s", wait_result_to_str(rc)); pg_fatal("could not reset WAL on subscriber: %s", wait_result_to_str(rc));
} }