Euler Taveira

Results 103 comments of Euler Taveira

Isn't the cancel key change a requirement to this feature? I suggest you to create a separate commit for it.

> Isn't the cancel key change a requirement to this feature? I suggest you to create a separate commit for it. Ops... I realized that you did it. Another suggestion...

``` $ psql -U xpto1 -d xpto2 psql: error: connection to server on socket "/tmp/.s.PGSQL.9916" failed: FATAL: role "xpto1" does not exist ``` It uses the same pattern as Postgres....

@vinhnd20 see https://github.com/pgbouncer/pgbouncer/issues/975#issuecomment-1785691673 .

@garry-t see my [previous comment](https://github.com/pgbouncer/pgbouncer/issues/967#issuecomment-1785695563). You need the `auth_file`. How will PgBouncer know the credentials to log into Postgres and execute the `auth_query`? `auth_file` should provide the `auth_user` credentials.

> spring: > datasource: > url: jdbc:postgresql://192.168.1.10:6432/test > username: postgres > password: postgres > How are you setting application name? Try `url: jdbc:postgresql://192.168.1.10:6432/test?ApplicationName=foobar` or if you are using `Properties` class,...

PR that @JelteF is referring to is #867 .

Change the connection string does not require a restart, use the `RECONNECT` command or `RELOAD` command after changing the connection string. Could you provide `SHOW POOLS` output while observing these...

You didn't provide enough information. You should start with Postgres and PgBouncer versions. You should also provide the `password_encryption` setting in your `postgresql.conf`. Are you mixing password types in your...