node-redshift icon indicating copy to clipboard operation
node-redshift copied to clipboard

Module working with 12.13.1 but not working with the latest Node version 14.15.0 LTS

Open pvijender opened this issue 4 years ago • 6 comments

Hi there,

This node module is working fine with 12.13.1 but on 14.15.0 LTS it isnt responding.

For users who are on the current version of the Node JS this could be an issue as there is no error message which is displayed.

pvijender avatar Oct 29 '20 07:10 pvijender

Hello Everyone!!, Do we have an update on this issue ?

JoseAReinoso avatar Dec 24 '20 14:12 JoseAReinoso

I have a PR that works with Node 14:

https://github.com/dmanjunath/node-redshift/pull/38

Issue is the pg module:

https://github.com/brianc/node-postgres/issues/2180

jkao avatar Jan 25 '21 23:01 jkao

If you are using yarn, a resolution defined in your package.json is a good workaround:

"resolutions": {
   "pg": "8.5.1"
}

It fixed the issue on our project.

arnaudbesnier avatar Mar 16 '21 08:03 arnaudbesnier

If you are using yarn, a resolution defined in your package.json is a good workaround:

"resolutions": {
   "pg": "8.5.1"
}

It fixed the issue on our project.

this did not work for me.

Romstar avatar Apr 27 '21 16:04 Romstar

I just discovered this issue after a few days of trying to make a new lambda function work. Couldn't figure out why old functions worked and this new one didn't, copied line by line trying to get something to come out. Really confusing because there's just no error message at all.

While waiting for a fix, would it be possible to just add a note in the documentation explaining the issue?

mschersten avatar Aug 10 '21 14:08 mschersten

Use this package https://www.npmjs.com/package/node-redshift-connector it solves the above connectivity issue

noman55 avatar Nov 18 '22 06:11 noman55