Hi,
I came across a strange behavior recently.
Env setup:
Linux- Ubuntu 18.
Docker - 19.06
Node and Postgres running inside docker using docker-compose.
When I manually restarted(or shut down) Postgres docker -> the Node app crashes with Error:
Error: server closed the connection unexpectedly
This probably means the server terminated abnormally
before or while processing the request.
at module.exports.Client._readError (/workspaces/node_modules/pg-native/index.js:154:13)
at module.exports.Client._read (/workspaces/node_modules/pg-native/index.js:203:17)
at PQ.emit (events.js:315:20)
Emitted 'error' event on instance at:
at module.exports.<anonymous> (/workspaces/node_modules/pg/lib/native/client.js:99:14)
at module.exports.emit (events.js:315:20)
at module.exports.Client._readError (/workspaces/node_modules/pg-native/index.js:155:8)
at module.exports.Client._read (/workspaces/node_modules/pg-native/index.js:203:17)
at PQ.emit (events.js:315:20)
I configured the on.error(callback) listener yet I keep getting this error which causes my node application to crash
The solution was to add on.error to the client that is being returned from the callback above.
export const pool = new pg.native.Pool(config);
const handleConnectionFailure = (e: Error, _client: pg.PoolClient) => {
_client.on('error', (err) => { // did the trick );
});
pool.connect(handleConnectionFailure);
pool.on('error', (err) => {
// didnt help
});
Hi,
I came across a strange behavior recently.
Env setup:
Linux- Ubuntu 18.
Docker - 19.06
Node and Postgres running inside docker using docker-compose.
When I manually restarted(or shut down) Postgres docker -> the Node app crashes with Error:
I configured the
on.error(callback)listener yet I keep getting this error which causes my node application to crashThe solution was to add
on.errorto the client that is being returned from the callback above.