• Brian Clozel's avatar
    Deprecate server.connection-timeout property · e4fa9ce8
    Brian Clozel authored
    Prior to this commit, all supported servers would share the same
    configuration property `server.connection-timeout`. Unfortunately, in
    many cases the behavior of this timeout changes depending on the server.
    From actual connection setup timeout, to detecting and closing idle
    connections, this property cannot be properly translated from one server
    implementation to another.
    
    This commit deprecates this configuration property and introduces server
    specific properties:
    
    * `server.jetty.connection-idle-timeout`
    (Time that the connection can be idle before it is closed.)
    * `server.netty.connection-timeout`
    (Connection timeout of the Netty channel.)
    * `server.tomcat.connection-timeout`
    (Amount of time the connector will wait, after accepting a connection,
    for the request URI line to be presented.)
    * `server.undertow.no-request-timeout`
    (Amount of time a connection can sit idle without processing a request,
    before it is closed by the server.)
    
    `server.connection-timeout` is now deprecated and will be removed in a
    future release.
    
    Fixes gh-18473
    e4fa9ce8
Name
Last commit
Last update
..
spring-boot Loading commit data...
spring-boot-actuator Loading commit data...
spring-boot-actuator-autoconfigure Loading commit data...
spring-boot-autoconfigure Loading commit data...
spring-boot-cli Loading commit data...
spring-boot-dependencies Loading commit data...
spring-boot-devtools Loading commit data...
spring-boot-docs Loading commit data...
spring-boot-parent Loading commit data...
spring-boot-properties-migrator Loading commit data...
spring-boot-starters Loading commit data...
spring-boot-test Loading commit data...
spring-boot-test-autoconfigure Loading commit data...
spring-boot-tools Loading commit data...
pom.xml Loading commit data...