We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Currently gives an error:
alter role authenticator connection limit 30; ERROR: 42501: "authenticator" is a reserved role, only superusers can modify it
This is useful for limiting pool connections.
Allow it.
The text was updated successfully, but these errors were encountered:
This needs to be more granular, otherwise you'd be able to alter role supabase_admin connection limit 0
alter role supabase_admin connection limit 0
Sorry, something went wrong.
@soedirgo We have an undocumented (pending fix) feature that allows for configurable reserved roles by suffixing them with *, like authenticator here:
*
reserved_roles="supabase_storage_admin, anon, reserved_but_not_yet_created, authenticator*"
https://github.com/supabase/supautils/blob/master/nix/withTmpDb.sh.in#L18
That should clear your concern right?
Hmm yeah, I think that'd work 👍
No branches or pull requests
Problem
Currently gives an error:
This is useful for limiting pool connections.
Solution
Allow it.
The text was updated successfully, but these errors were encountered: