summaryrefslogtreecommitdiffstats
path: root/jdisc_http_service/src/main/resources
diff options
context:
space:
mode:
authorBjørn Christian Seime <bjorncs@oath.com>2018-09-05 10:58:57 +0200
committerBjørn Christian Seime <bjorncs@oath.com>2018-09-05 11:07:50 +0200
commit55ba06dc86c76d98c5c631e728b4df7a3117a5d2 (patch)
tree4bbae2c97ef610a43823504b9f0a610769eb6c9e /jdisc_http_service/src/main/resources
parent245d4aa6cda2c635c28dd8d7f2f64fb6de1c6d94 (diff)
SO linger is not supported for non-blocking sockets in Jetty 9.4.12 and later
Quote from Jetty: 'For non-blocking sockets, StandardSocketOptions#SO_LINGER javadocs report that the behavior is undefined. In JDK 11 setting SoLinger for non-blocking sockets will be ignored. As such, there is no point in allowing SoLinger to be configured in Jetty that only uses non-blocking sockets.'
Diffstat (limited to 'jdisc_http_service/src/main/resources')
-rw-r--r--jdisc_http_service/src/main/resources/configdefinitions/jdisc.http.connector.def4
1 files changed, 2 insertions, 2 deletions
diff --git a/jdisc_http_service/src/main/resources/configdefinitions/jdisc.http.connector.def b/jdisc_http_service/src/main/resources/configdefinitions/jdisc.http.connector.def
index f0673e240c7..9ae4713c633 100644
--- a/jdisc_http_service/src/main/resources/configdefinitions/jdisc.http.connector.def
+++ b/jdisc_http_service/src/main/resources/configdefinitions/jdisc.http.connector.def
@@ -25,8 +25,8 @@ acceptQueueSize int default=0
# Whether the server socket reuses addresses.
reuseAddress bool default=true
-# TODO Vespa 7: Remove soLingerTime - Jetty no longer support it
-# DEPRECATED The linger time in seconds. Use -1.0 to disable.
+# TODO Vespa 7: Remove soLingerTime - Jetty no longer support it.
+# DEPRECATED No longer in use
soLingerTime double default=-1.0
# The maximum idle time for a connection, which roughly translates to the Socket.setSoTimeout(int).