-
Notifications
You must be signed in to change notification settings - Fork 1.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Correct postgres retention_period as a fragment instead of a GET param #46898
Conversation
The PR changelog entry failed validation: Changelog entry not found in the PR body. Please add a "no-changelog" label to the PR, or changelog lines starting with |
🤖 Vercel preview here: https://docs-mseanxt31-goteleport.vercel.app/docs/ver/preview |
The PR changelog entry failed validation: Changelog entry not found in the PR body. Please add a "no-changelog" label to the PR, or changelog lines starting with |
When trying to use `retention_period` query param with a `postgresql://` URI, this causes a failure. `server error (FATAL: unrecognized configuration parameter "retention_period" (SQLSTATE 42704))` The correct syntax is to include it in the fragment portion of the URI instead.
81d6457
to
961bc5b
Compare
I was able to successfully set |
🤖 Vercel preview here: https://docs-9ppmxwibe-goteleport.vercel.app/docs |
@programmerq See the table below for backport results.
|
When trying to use
retention_period
with a GET parameter inpostgresql://
URI, this causes a failure.server error (FATAL: unrecognized configuration parameter "retention_period" (SQLSTATE 42704))
Instead, the
retention_period
should be included as part of the fragment of the URI. Updating doc to show correct syntax.