diff --git a/jetty-documentation/src/main/asciidoc/quick-start/configuring/what-to-configure.adoc b/jetty-documentation/src/main/asciidoc/quick-start/configuring/what-to-configure.adoc index 438491945d6..9704f4b9fd2 100644 --- a/jetty-documentation/src/main/asciidoc/quick-start/configuring/what-to-configure.adoc +++ b/jetty-documentation/src/main/asciidoc/quick-start/configuring/what-to-configure.adoc @@ -31,7 +31,7 @@ In the standard Jetty distribution, the core server configuration is in `etc/jet ThreadPool:: The Server instance provides a ThreadPool instance that is the default Executor service other Jetty server components use. - The prime configuration of the thread pool is the maximum and minimum size and is set in `start.ini` or `start.d/server.ini`. + The prime configuration of the thread pool is the maximum and minimum size and is set in `start.ini` or `start.d/threadpool.ini`. Handlers:: A Jetty server can have only a single Handler instance to handle incoming HTTP requests. However a handler may be a container or wrapper of other handlers forming a tree of handlers that typically diff --git a/jetty-server/src/main/config/modules/threadpool.mod b/jetty-server/src/main/config/modules/threadpool.mod index c0201b3c7e0..f1a523d7403 100644 --- a/jetty-server/src/main/config/modules/threadpool.mod +++ b/jetty-server/src/main/config/modules/threadpool.mod @@ -16,7 +16,7 @@ etc/jetty-threadpool.xml #jetty.threadPool.maxThreads=200 ## Number of reserved threads (-1 for heuristic) -# jetty.threadPool.reservedThreads=-1 +#jetty.threadPool.reservedThreads=-1 ## Thread Idle Timeout (in milliseconds) #jetty.threadPool.idleTimeout=60000