-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Failing at connection after running npm install #1636
Comments
I had this exact issue as well. It took our site down in production as we spun up new servers because the ^ character in your package.json means to load in the most recent minor version package, and since 7.4.2 is new as of 4 hrs ago it loaded that package in. I had to remove the ^ from my dependency so that it would lock in the previous version. Edit: If someone with more knowledge than me things this is an pretty easy fix, let me know and I'll take a crack at trying to fix it. |
@vitaly-t Note, that this issue appears to also impact pg-promise@8.4.1 |
@vladpap31 Please tells us what versions of Node.js and PostgreSQL are you using. |
Encountered the same issue 5 minutes ago. Node: |
@larsthorup Thank you for pinging me on this. I have reverted |
I am using Node |
Ok, so it is fair to say at this point that the issue is irrelevant of the Node.js or PostgreSQL versions. It was a generic-type break in connectivity, caused by one of these commits: |
I also ran into this Node 8.11.1 |
Same result here since yesterday : Node 8.11.1, postgresql 9.4.6. |
did some sleuthing before I even saw this thread - fix here #1638 |
had to roll back to pg@6.4.2 |
For anyone needing to move forward, rolling back to 7.4.1 should work. |
I had the same issue for anything >7 |
Gotcha. Might be an different root cause then 🦍
On Sun, May 6, 2018, 9:01 PM Eli Tabello ***@***.***> wrote:
I had the same issue for anything >7
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#1636 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AA2-p9d-JCyZl2m0iVLvkxzSaSFMzqfEks5tv6rpgaJpZM4TzURX>
.
--
Cheers,
Matthew Keas
|
@openciti
Not possible, unless you include it as: |
The issue is fixed wit the commit 7de137f. |
I have a piece of code that connects to Redshift and runs a query. The code worked until I re-deployed today without changing anything in the functionality or the npm version. Note that every time I deploy the code, it installs all the npm packages before archiving.
In package.json I have "pg": "^7.4.1" as the dependency.
The error I am constantly getting is:
Anyone have a clue on what is causing this? Thanks!
The text was updated successfully, but these errors were encountered: