-
Notifications
You must be signed in to change notification settings - Fork 8
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
Parsing for multihost #29
Comments
That's because |
@vitaly-t any suggestion on how it should be with the domain name? is below string is correct? I am using pg library for postgres connection.
it forms correct string I guess, but while trying to connect with DB fails here
|
Why your database server does not recognize a connection - probably because it does not support multi-host configurations. But that's not relevant for investigation here. That's the driver's issue. And as for the |
As far as |
Hi There,
I was trying to parse the below URL , but it is returning null
const h = ConnectionString.parseHost('[server.site1.company.com::]:1512); console.log(h);
prints null on console.
Basically I want to create multihost string like below
postgres://user:[email protected]:1512,[server2.site2.company.com::]:1512/dbname?target_session_attrs=read-write
The text was updated successfully, but these errors were encountered: