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
Pool has two connect function variants, one from a raw Postgres URI connect and one from a typed PgConnectOptionsconnect_with. PgListener also has two connect function variants, one from a raw Postgres URI connect and one from a pool connect_with.
I need a function to use PgConnectOptions to connect a PgListener.
As connect_with has already been taken, a non-breaking solution would be connect_with_option.
In my opinion, we should have connect, connect_with and connect_with_pool to match the names of the Pool functions.
The text was updated successfully, but these errors were encountered:
Pool
has two connect function variants, one from a raw Postgres URIconnect
and one from a typedPgConnectOptions
connect_with
.PgListener
also has two connect function variants, one from a raw Postgres URIconnect
and one from a poolconnect_with
.I need a function to use
PgConnectOptions
to connect aPgListener
.As
connect_with
has already been taken, a non-breaking solution would beconnect_with_option
.In my opinion, we should have
connect
,connect_with
andconnect_with_pool
to match the names of thePool
functions.The text was updated successfully, but these errors were encountered: