From: Jacob Champion Date: Fri, 29 May 2026 18:34:12 +0000 (-0700) Subject: libpq: Send users to the wiki during grease failures X-Git-Tag: REL_19_BETA1~18 X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=2368c14e9e205c5ee3cf0106bde028f2914f188a;p=thirdparty%2Fpostgresql.git 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 --- 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"); }