Got the error message: unrecognized configuration parameter "ssl_renegotiation_limit"
The server configuration parameter 'ssl_renegotiation_limit' has been removed in the PostgreSQL 9.5.
http://www.postgresql.org/docs/9.5/static/release-9-5.html
Thanks for reporting, what version of Npgsql are you on?
Npgsql 2.2.7
Conversation in pgsql-hackers on putting back the ssl_renegotiation_limit parameter: http://www.postgresql.org/message-id/[email protected]
The pgsql-hackers accepted my patch which makes PostgreSQL accept this parameter, but only when it's 0, for backwards compatibility. This allows us to continue sending it in the startup packet as before.
If you can't wait for the next 9.5 beta, you can work around this by specifying "Server Compatibility Mode=Redshift" in the connection string.
Most helpful comment
If you can't wait for the next 9.5 beta, you can work around this by specifying "Server Compatibility Mode=Redshift" in the connection string.