This repository was archived by the owner on Dec 29, 2022. It is now read-only.

Description
I have two processes: one with a Bridge and na anonymous Node, another one with an anonymous Node.
When I shutdown the process (Ctrl-C) with standalone Node, the process with the Bridge displays the following error:
{ [Error: read ECONNRESET] code: 'ECONNRESET', errno: 'ECONNRESET', syscall: 'read' }
Adding myBridge.on("error"... or myFirstNode.on("error"... in the first process, that error is not catched.
However, I have mySecondNode.on("error"... and when I shutdown the process with the Bridge, the error callback is triggered.
Any hint?