You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@knox.apache.org by km...@apache.org on 2015/11/09 20:52:19 UTC

knox git commit: KNOX-620: Jenkins Knox-master-verify failing since #725 due to JDK version issues. Increase jetty debug thread pool to 16.

Repository: knox
Updated Branches:
  refs/heads/master 04b5561ea -> a4ab854fa


KNOX-620: Jenkins Knox-master-verify failing since #725 due to JDK version issues. Increase jetty debug thread pool to 16.


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

Branch: refs/heads/master
Commit: a4ab854fab50b239c7723ea6616760b3a4749aae
Parents: 04b5561
Author: Kevin Minder <ke...@hortonworks.com>
Authored: Mon Nov 9 14:52:04 2015 -0500
Committer: Kevin Minder <ke...@hortonworks.com>
Committed: Mon Nov 9 14:52:04 2015 -0500

----------------------------------------------------------------------
 .../test/java/org/apache/hadoop/gateway/GatewayTestConfig.java   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/knox/blob/a4ab854f/gateway-test/src/test/java/org/apache/hadoop/gateway/GatewayTestConfig.java
----------------------------------------------------------------------
diff --git a/gateway-test/src/test/java/org/apache/hadoop/gateway/GatewayTestConfig.java b/gateway-test/src/test/java/org/apache/hadoop/gateway/GatewayTestConfig.java
index 0da0f29..cba3f15 100644
--- a/gateway-test/src/test/java/org/apache/hadoop/gateway/GatewayTestConfig.java
+++ b/gateway-test/src/test/java/org/apache/hadoop/gateway/GatewayTestConfig.java
@@ -261,11 +261,11 @@ public class GatewayTestConfig extends Configuration implements GatewayConfig {
 
   @Override
   public int getHttpClientMaxConnections() {
-    return 8;
+    return 16;
   }
 
   @Override
   public int getThreadPoolMax() {
-    return 8;
+    return 16;
   }
 }