Skip to content

Commit

Permalink
disable connection linger timeout by default (#3576)
Browse files Browse the repository at this point in the history
Co-authored-by: Adam Warski <[email protected]>
  • Loading branch information
fwbrasil and adamw authored Mar 7, 2024
1 parent a967485 commit 6613efd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ object NettyConfig {
socketKeepAlive = true,
requestTimeout = Some(20.seconds),
connectionTimeout = Some(10.seconds),
lingerTimeout = Some(60.seconds),
lingerTimeout = None, // see #3576
gracefulShutdownTimeout = Some(10.seconds),
maxConnections = None,
addLoggingHandler = false,
Expand Down

0 comments on commit 6613efd

Please sign in to comment.