diff options
author | Amit Kapila | 2025-02-20 08:32:29 +0000 |
---|---|---|
committer | Amit Kapila | 2025-02-20 08:32:29 +0000 |
commit | 7da344b9f84f0c63590a34136f3fa5d0ab128657 (patch) | |
tree | 6c2d86f0b1dd44b604a712bb3dba18dfa19803bd | |
parent | 525392d5727f469e9a5882e1d728917a4be56147 (diff) |
Improve errdetail message added by ac0e33136a.
Make it consistent with other similar messages.
Author: Kyotaro Horiguchi <[email protected]>
Reviewed-by: Hayato Kuroda <[email protected]>
Discussion: https://postgr.es/m/[email protected]
-rw-r--r-- | src/backend/replication/slot.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/replication/slot.c b/src/backend/replication/slot.c index 292407f5149..84270c493a5 100644 --- a/src/backend/replication/slot.c +++ b/src/backend/replication/slot.c @@ -2986,7 +2986,7 @@ check_idle_replication_slot_timeout(int *newval, void **extra, GucSource source) { if (IsBinaryUpgrade && *newval != 0) { - GUC_check_errdetail("The value of \"%s\" must be set to 0 during binary upgrade mode.", + GUC_check_errdetail("\"%s\" must be set to 0 during binary upgrade mode.", "idle_replication_slot_timeout"); return false; } |