Re: Issue with configuration parameter "require_auth"

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: "Gaisford, Phillip" <phillip(dot)gaisford(at)hpe(dot)com>
Cc: "pgsql-general(at)lists(dot)postgresql(dot)org" <pgsql-general(at)lists(dot)postgresql(dot)org>
Subject: Re: Issue with configuration parameter "require_auth"
Date: 2024-07-17 15:23:55
Message-ID: 3554314.1721229835@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

"Gaisford, Phillip" <phillip(dot)gaisford(at)hpe(dot)com> writes:
> Using golang sqlx.Connect on the client side, the connection fails and my Postgresql 16 server logs the following:
> 2024-07-17 14:42:07.285 UTC [115] FATAL: unrecognized configuration parameter "require_auth"

require_auth is a connection parameter, like host or port or dbname.
You seem to be trying to specify it as a server parameter, ie inside
the "options" connection parameter.

regards, tom lane

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message David G. Johnston 2024-07-17 15:27:11 Re: Issue with configuration parameter "require_auth"
Previous Message Gaisford, Phillip 2024-07-17 15:09:39 Issue with configuration parameter "require_auth"