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-deploy
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-deploy')
-rw-r--r--jetty-deploy/src/test/resources/jetty.xml10
1 files changed, 4 insertions, 6 deletions
diff --git a/jetty-deploy/src/test/resources/jetty.xml b/jetty-deploy/src/test/resources/jetty.xml
index fa285624ea..732adfb3f7 100644
--- a/jetty-deploy/src/test/resources/jetty.xml
+++ b/jetty-deploy/src/test/resources/jetty.xml
@@ -14,12 +14,10 @@
<!-- =========================================================== -->
<!-- Server Thread Pool -->
<!-- =========================================================== -->
- <Arg name="threadPool">
- <New class="org.eclipse.jetty.util.thread.QueuedThreadPool">
- <Set name="maxThreads">200</Set>
- <Set name="minThreads">10</Set>
- </New>
- </Arg>
+ <Get name="ThreadPool">
+ <Set name="minThreads" type="int">10</Set>
+ <Set name="maxThreads" type="int">200</Set>
+ </Get>
<!-- =========================================================== -->
<!-- Set connectors -->

Back to the top