Unhandled TLSSocket error - internal Node error #44751
Description
Version
18.9.0, 17.1.0
Platform
Bodhi Linux (Ubuntu like) - VM guest on Windows 10 host
Subsystem
No response
What steps will reproduce the bug?
I am running my Node based peer-to-peer application in test automation mode that creates persistent sockets as TLS websockets. One the first test automation run, initiated from the windows host machine, everything is fine. The application instance on the VMs continues to run so that I can frequently run test automation instances without ever touching the VMs. When I attempt to run test automation a second time only 1 of my 4 VM application instances fails.
This appears to be a node defect. The error message mentions an unhandled error event but I have extensive error handling on just about everything in my application, most especially my socket management. The stack trace also does not indicate any code from my application.
How often does it reproduce? Is there a required condition?
100% reproducible. I am running 4 virtual machines each with a nearly identical install. This problem only occurs on one of those 4 VMs.
What is the expected behavior?
Socket not crashing.
What do you see instead?
node:events:491
throw er; // Unhandled 'error' event
Error: read ECONNRESET
at TLSWrap.onStreamRead (node:internal/stream_base_commons:217:20)
Emitted 'error' event on TLSSocket instance at:
at emitErrorNT (node:internal/streams/destroy:151:8)
at emitErrorCloseNT (node:internal/streams/destroy:116:3)
at process.processTicksAndRejections (node:internal/process/task_queues:82:21) {
errno: -104,
code: 'ECONNRESET',
syscall: 'read'
}
Node.js v18.9.0
Additional information
No response
Activity