-
Notifications
You must be signed in to change notification settings - Fork 41.5k
Closed
Labels
status: supersededAn issue that has been superseded by anotherAn issue that has been superseded by another
Description
As of #15385, Spring Boot can configure the server connection timeout for Netty servers.
We're using the server.connection-timeout
configuration property for that and applying it directly to Netty as a channel option.
In #15368 (comment), it seems that -1
and 0
values don't mean the same thing for Netty:
-1
is an illegal value, we should map it to0
instead as this is the value that disables the connection timeout for Netty0
is not the default value for Netty and it disables the connection timeout. We should instead ignore completely this value and not set anything for Netty
See the Netty ChannelConfig.
Metadata
Metadata
Assignees
Labels
status: supersededAn issue that has been superseded by anotherAn issue that has been superseded by another