You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We have a standard Node.js express application. The client uses socket connection pooling to connect to our regular http service, and it keeps opened sockets by hand for 6 seconds. It worked correctly from Node.js 0.8.x to 7.x, but got broken on Node.js 8.1. According to client logs the server closes idle sockets after a few seconds.
That ill behavior is consistent on OSX and on Windows, so it originates from Node.js 8.1 side for sure.
We haven't configured the created sockets in server 'connection' handler, so every setting should be at default.
So my question is, how can we configure http server socket timeouts in Node 8? We've tried:
So this issue might be a duplicate of #13391. I'm gonna try the mentioned workaround and gonna close this if it gets resolved. Thanks for the quick reply!
We have a standard Node.js express application. The client uses socket connection pooling to connect to our regular http service, and it keeps opened sockets by hand for 6 seconds. It worked correctly from Node.js 0.8.x to 7.x, but got broken on Node.js 8.1. According to client logs the server closes idle sockets after a few seconds.
That ill behavior is consistent on OSX and on Windows, so it originates from Node.js 8.1 side for sure.
We haven't configured the created sockets in server 'connection' handler, so every setting should be at default.
So my question is, how can we configure http server socket timeouts in Node 8? We've tried:
But it didn't help.
The text was updated successfully, but these errors were encountered: