Skip to content

Commit de85204

Browse files
TysonAndre-tmggibfahn
authored andcommitted
doc: doc imitating the old behavior of http.Server.keepAliveTimeout
Documenting the best way to imitate the old behavior saves time for people migrating from older versions. (E.g. for unexpected ECONNRESET) It isn't immediately obvious if earlier nodejs versions behaved the same way as nodejs 8 does with keepAliveTimeout = 0. From 0aa7ef5, it seems like they behave the same way. Related to issues such as #13391 that show up when migrating to node 8 PR-URL: #17660 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Rich Trott <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Anatoli Papirovski <[email protected]>
1 parent 1c2783b commit de85204

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

doc/api/http.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -900,7 +900,7 @@ added: v0.9.12
900900
The number of milliseconds of inactivity before a socket is presumed
901901
to have timed out.
902902

903-
A value of 0 will disable the timeout behavior on incoming connections.
903+
A value of `0` will disable the timeout behavior on incoming connections.
904904

905905
*Note*: The socket timeout logic is set up on connection, so changing this
906906
value only affects new connections to the server, not any existing connections.
@@ -918,7 +918,9 @@ will be destroyed. If the server receives new data before the keep-alive
918918
timeout has fired, it will reset the regular inactivity timeout, i.e.,
919919
[`server.timeout`][].
920920

921-
A value of 0 will disable the keep-alive timeout behavior on incoming connections.
921+
A value of `0` will disable the keep-alive timeout behavior on incoming connections.
922+
A value of `0` makes the http server behave similarly to Node.js versions prior to 8.0.0,
923+
which did not have a keep-alive timeout.
922924

923925
*Note*: The socket timeout logic is set up on connection, so changing this
924926
value only affects new connections to the server, not any existing connections.

0 commit comments

Comments
 (0)