←back to thread

462 points jakevoytko | 1 comments | | HN request time: 0s | source
Show context
zdc1 ◴[] No.43492287[source]
My worst bug had me using statistics to try and correlate occurrence rates with traffic/time of day, API requests, app versions, Node.js versions, resource allocations, etc. And when that failed I was capturing Prod traffic for examination in Wireshark...

Turned out that Node.js didn't gracefully close TCP connections. It just silently dropped the connection and sent a RST packet if the other side tried to reuse it. Fun times.

replies(3): >>43492706 #>>43495786 #>>43497944 #
1. foderking ◴[] No.43492706[source]
crazy