You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@juneau.apache.org by ja...@apache.org on 2017/09/14 21:10:31 UTC

incubator-juneau git commit: Add default thread pool values to jetty.xml files.

Repository: incubator-juneau
Updated Branches:
  refs/heads/master 4f03a61e5 -> a1b71e1b9


Add default thread pool values to jetty.xml files.

Project: http://git-wip-us.apache.org/repos/asf/incubator-juneau/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-juneau/commit/a1b71e1b
Tree: http://git-wip-us.apache.org/repos/asf/incubator-juneau/tree/a1b71e1b
Diff: http://git-wip-us.apache.org/repos/asf/incubator-juneau/diff/a1b71e1b

Branch: refs/heads/master
Commit: a1b71e1b972650f4ab5b8a9970b378f1a59887cf
Parents: 4f03a61
Author: JamesBognar <ja...@apache.org>
Authored: Thu Sep 14 17:10:27 2017 -0400
Committer: JamesBognar <ja...@apache.org>
Committed: Thu Sep 14 17:10:27 2017 -0400

----------------------------------------------------------------------
 juneau-examples/juneau-examples-rest/jetty.xml             | 7 +++++++
 juneau-microservice/juneau-microservice-template/jetty.xml | 7 +++++++
 juneau-microservice/juneau-microservice-test/jetty.xml     | 7 +++++++
 3 files changed, 21 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/a1b71e1b/juneau-examples/juneau-examples-rest/jetty.xml
----------------------------------------------------------------------
diff --git a/juneau-examples/juneau-examples-rest/jetty.xml b/juneau-examples/juneau-examples-rest/jetty.xml
index 71e5d04..2cac2e9 100644
--- a/juneau-examples/juneau-examples-rest/jetty.xml
+++ b/juneau-examples/juneau-examples-rest/jetty.xml
@@ -58,4 +58,11 @@
 			</Set>
 		</New>
 	</Set>
+	
+    <Get name="ThreadPool">
+        <Set name="minThreads" type="int">10</Set>
+        <Set name="maxThreads" type="int">100</Set>
+        <Set name="idleTimeout" type="int">60000</Set>
+        <Set name="detailedDump">true</Set>
+    </Get>
 </Configure>

http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/a1b71e1b/juneau-microservice/juneau-microservice-template/jetty.xml
----------------------------------------------------------------------
diff --git a/juneau-microservice/juneau-microservice-template/jetty.xml b/juneau-microservice/juneau-microservice-template/jetty.xml
index e5f7543..77c5cf0 100644
--- a/juneau-microservice/juneau-microservice-template/jetty.xml
+++ b/juneau-microservice/juneau-microservice-template/jetty.xml
@@ -55,4 +55,11 @@
 			</Set>
 		</New>
 	</Set>
+	
+    <Get name="ThreadPool">
+        <Set name="minThreads" type="int">10</Set>
+        <Set name="maxThreads" type="int">100</Set>
+        <Set name="idleTimeout" type="int">60000</Set>
+        <Set name="detailedDump">true</Set>
+    </Get>	
 </Configure>

http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/a1b71e1b/juneau-microservice/juneau-microservice-test/jetty.xml
----------------------------------------------------------------------
diff --git a/juneau-microservice/juneau-microservice-test/jetty.xml b/juneau-microservice/juneau-microservice-test/jetty.xml
index 76d9e2d..f2c3a9c 100644
--- a/juneau-microservice/juneau-microservice-test/jetty.xml
+++ b/juneau-microservice/juneau-microservice-test/jetty.xml
@@ -55,4 +55,11 @@
 			</Set>
 		</New>
 	</Set>
+	
+    <Get name="ThreadPool">
+        <Set name="minThreads" type="int">10</Set>
+        <Set name="maxThreads" type="int">100</Set>
+        <Set name="idleTimeout" type="int">60000</Set>
+        <Set name="detailedDump">true</Set>
+    </Get>
 </Configure>