From: Amit Kapila Date: Thu, 20 Feb 2025 08:32:29 +0000 (+0530) Subject: Improve errdetail message added by ac0e33136a. X-Git-Tag: REL_18_BETA1~822 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7da344b9f84f0c63590a34136f3fa5d0ab128657;p=thirdparty%2Fpostgresql.git Improve errdetail message added by ac0e33136a. Make it consistent with other similar messages. Author: Kyotaro Horiguchi Reviewed-by: Hayato Kuroda Discussion: https://postgr.es/m/20250220.140839.1444694904721968348.horikyota.ntt@gmail.com --- 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; }