summaryrefslogtreecommitdiffstats
path: root/jdisc_http_service/src/main/resources/configdefinitions
diff options
context:
space:
mode:
Diffstat (limited to 'jdisc_http_service/src/main/resources/configdefinitions')
-rw-r--r--jdisc_http_service/src/main/resources/configdefinitions/jdisc.http.connector.def3
-rw-r--r--jdisc_http_service/src/main/resources/configdefinitions/jdisc.http.server.def4
2 files changed, 6 insertions, 1 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 30c74ed2c35..e5f954fc538 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
@@ -28,7 +28,8 @@ reuseAddress bool default=true
# The maximum idle time for a connection, which roughly translates to the Socket.setSoTimeout(int).
idleTimeout double default=180.0
-# The stop timeout.
+# The stop timeout in seconds (timeout for processing in-flight requests during server shutdown).
+# Should usually match the stopTimeout in the server config.
stopTimeout double default=30.0
# Whether or not to have socket keep alive turned on.
diff --git a/jdisc_http_service/src/main/resources/configdefinitions/jdisc.http.server.def b/jdisc_http_service/src/main/resources/configdefinitions/jdisc.http.server.def
index a6cb43cee17..5cbbfdbbb33 100644
--- a/jdisc_http_service/src/main/resources/configdefinitions/jdisc.http.server.def
+++ b/jdisc_http_service/src/main/resources/configdefinitions/jdisc.http.server.def
@@ -27,6 +27,10 @@ filter[].binding string
# Max number of threads in pool
maxWorkerThreads int default = 200
+# Stop timeout in seconds (timeout for processing in-flight requests during server shutdown).
+# Should usually match the stopTimeout in the connector config.
+stopTimeout double default = 30.0
+
# Enable embedded JMX server. Note: only accessible through the loopback interface.
jmx.enabled bool default = false