-
-
Notifications
You must be signed in to change notification settings - Fork 57
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
docs: update Supavisor application_name query #345
base: main
Are you sure you want to change the base?
Conversation
docs/migrating/pgbouncer.md
Outdated
@@ -40,7 +40,7 @@ select | |||
usename, | |||
application_name | |||
from pg_stat_activity | |||
where application_name ilike '%Supavisor%' | |||
where application_name = 'Supavisor' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
there's no point in doing ilike
when we set it as Supavisor
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There is also a Supavisor auth_query
one
bccf097
to
857b4c9
Compare
857b4c9
to
4c56def
Compare
@@ -40,7 +40,7 @@ select | |||
usename, | |||
application_name | |||
from pg_stat_activity | |||
where application_name ilike '%Supavisor%' | |||
where application_name in ('Supavisor', 'Supavisor auth_query') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@chasers including the auth query one.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
But why? Now we have to remember to add any here if we update them.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
conflicts with #343
No description provided.