You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Remove idx_offset optimization from clientauth. (#295)
There was a math bug with this optimization that caused incoming
connections to occassionally be missed by a worker. This optimization
doesn't seem necessary and makes the code harder to understand and
maintain, so just get rid of it.
Update a TAP test for postgres 4f7f7b0 to pass CI on master.
Update docs for cluster-wide passcheck (#236)
Add new parameter `pgtle.passcheck_db_name` and describe how to enable
cluster-wide passcheck.
Correct a previous mistake in the docs that stated only `pgtle_admin`
users can SELECT `pgtle.feature_info`.
Add clientauth documentation and example (#231)
Based on the existing documentation for the passcheck hook. Added a SQL file under the examples directory containing a sample clientauth extension that locks out users after repeated failed login attempts.