diff options
Diffstat (limited to 'src/bin/pg_basebackup/streamutil.c')
-rw-r--r-- | src/bin/pg_basebackup/streamutil.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/pg_basebackup/streamutil.c b/src/bin/pg_basebackup/streamutil.c index 299b9b76213..1478aa9f25a 100644 --- a/src/bin/pg_basebackup/streamutil.c +++ b/src/bin/pg_basebackup/streamutil.c @@ -522,7 +522,7 @@ GetSlotInformation(PGconn *conn, const char *slot_name, */ if (PQgetisnull(res, 0, 0)) { - pg_log_error("could not find replication slot \"%s\"", slot_name); + pg_log_error("replication slot \"%s\" does not exist", slot_name); PQclear(res); return false; } |