Description
- Version: v8.14.0
- Platform: macOS 10.13.3,
node:carbon
LTS docker image - Subsystem: http
I'd like to report a possible regression introduced to the http
module between versions 8.9.4 and 8.14.0.
Sockets that are opened but data is not transferred are closed immediately after data transmission once they have idled for >40 seconds.
Reproduction available here: https://github.com/timcosta/node_tcp_regression_test
We ran a tcpdump on our servers that were 504ing, and saw that node is responding with an ACK
followed almost immediately by a duplicate ACK
with an additional RST
on the same socket.
Timeouts are set to 60 seconds on the client (AWS ELB) and 2 minutes on the node server (hapi.js).
I'm filing this as a node core issue as the error can be reproduced by using both hapi and the bare node http module as can be seen in this travis build: https://travis-ci.com/timcosta/node_tcp_regression_test/builds/94440224
The error seems to be not consistent per travis on versions 8.14.0, 10.14.2, and 11.4.0 but the build consistently passes on v8.9.4 which leads me to believe there is a possible regression.