From 2368c14e9e205c5ee3cf0106bde028f2914f188a Mon Sep 17 00:00:00 2001 From: Jacob Champion Date: Fri, 29 May 2026 11:34:12 -0700 Subject: [PATCH] libpq: Send users to the wiki during grease failures The existing documentation link for grease errors is fine, but something a little more user-friendly and updatable would be ideal, since the campaign won't last very long. The page https://wiki.postgresql.org/wiki/Grease has been added for this purpose. (It's admin-protected, to avoid making it a spam target). Discussion: https://postgr.es/m/CAOYmi%2BkVfqgPAaR1QuY7%3DRPBYR6MsA3V3_f5%2BH-75uC06YCDDA%40mail.gmail.com --- src/interfaces/libpq/fe-misc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/interfaces/libpq/fe-misc.c b/src/interfaces/libpq/fe-misc.c index 325a485ef53..905344d5c38 100644 --- a/src/interfaces/libpq/fe-misc.c +++ b/src/interfaces/libpq/fe-misc.c @@ -1439,5 +1439,5 @@ libpq_append_grease_info(PGconn *conn) "\tFor more information, including instructions on how to\n" "\twork around this issue for now, visit\n" "\t\t%s", - "https://www.postgresql.org/docs/devel/libpq-connect.html#LIBPQ-CONNECT-MAX-PROTOCOL-VERSION"); + "https://wiki.postgresql.org/wiki/Grease"); }