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
after upgrade to node v6.1.0, can't connect to postgres hosted on aws.
example code: var pg = require('pg'); pg.connect(connectionString, function(err, client, done) {
where connectionString can be something like: postgres://master:[email protected]:5432/db_demo?ssl=true
EDIT: the same happens even when omitting the ssl=true param.
I get: { error: password authentication failed for user "master"
(the password is the correct one, this error happens only on the latest node version)
is this a bug or a change that I need to handle differently?
it's likely related to nodejs/node#6551
(original issue: nodejs/node#6782)
The text was updated successfully, but these errors were encountered:
Duplicate of #1000?
Long story short - just upgrade to the latest 4.5.5.
Sorry, something went wrong.
Thanks, you're right. It's a dup. Solved after upgrading. Not sure how I missed this upgrade but thanks anyway
No branches or pull requests
after upgrade to node v6.1.0, can't connect to postgres hosted on aws.
example code:
var pg = require('pg');
pg.connect(connectionString, function(err, client, done) {
where connectionString can be something like:
postgres://master:[email protected]:5432/db_demo?ssl=true
EDIT: the same happens even when omitting the ssl=true param.
I get: { error: password authentication failed for user "master"
(the password is the correct one, this error happens only on the latest node version)
is this a bug or a change that I need to handle differently?
it's likely related to nodejs/node#6551
(original issue: nodejs/node#6782)
The text was updated successfully, but these errors were encountered: