Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGreg Wilkins2013-05-30 01:59:36 +0000
committerGreg Wilkins2013-05-30 01:59:36 +0000
commit76457d4807286a1b6f9eb70ea8bddc4c72cf6a1b (patch)
tree8e727a35bc8b22cbca97cf673d8bdab408bf1706 /jetty-osgi/jetty-osgi-boot/jettyhome/etc
parent94e669afaee00939da45261097607c81c29375a3 (diff)
downloadorg.eclipse.jetty.project-76457d4807286a1b6f9eb70ea8bddc4c72cf6a1b.tar.gz
org.eclipse.jetty.project-76457d4807286a1b6f9eb70ea8bddc4c72cf6a1b.tar.xz
org.eclipse.jetty.project-76457d4807286a1b6f9eb70ea8bddc4c72cf6a1b.zip
409441 jetty.xml threadpool arg injection
Do not use arg injection for ThreadPool
Diffstat (limited to 'jetty-osgi/jetty-osgi-boot/jettyhome/etc')
-rw-r--r--jetty-osgi/jetty-osgi-boot/jettyhome/etc/jetty.xml11
1 files changed, 4 insertions, 7 deletions
diff --git a/jetty-osgi/jetty-osgi-boot/jettyhome/etc/jetty.xml b/jetty-osgi/jetty-osgi-boot/jettyhome/etc/jetty.xml
index 4bde8d7222..5c882b0514 100644
--- a/jetty-osgi/jetty-osgi-boot/jettyhome/etc/jetty.xml
+++ b/jetty-osgi/jetty-osgi-boot/jettyhome/etc/jetty.xml
@@ -14,13 +14,10 @@
<!-- =========================================================== -->
<!-- Server Thread Pool -->
<!-- =========================================================== -->
- <Arg name="threadpool">
- <!-- Default queued blocking threadpool -->
- <New class="org.eclipse.jetty.util.thread.QueuedThreadPool">
- <Set name="minThreads">10</Set>
- <Set name="maxThreads">200</Set>
- </New>
- </Arg>
+ <Get name="ThreadPool">
+ <Set name="minThreads">10</Set>
+ <Set name="maxThreads">200</Set>
+ </Get>
<!-- =========================================================== -->

Back to the top