Repository: nifi Updated Branches: refs/heads/master 5cb928131 -> 118f4e8cc
NIFI-3978 Increase threadpool size for S2S HTTP tests This closes #1858. Signed-off-by: Koji Kawamura <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/nifi/repo Commit: http://git-wip-us.apache.org/repos/asf/nifi/commit/118f4e8c Tree: http://git-wip-us.apache.org/repos/asf/nifi/tree/118f4e8c Diff: http://git-wip-us.apache.org/repos/asf/nifi/diff/118f4e8c Branch: refs/heads/master Commit: 118f4e8cca8a8528debade90dad41239b070c199 Parents: 5cb9281 Author: Joey Frazee <[email protected]> Authored: Thu May 25 15:32:06 2017 +0000 Committer: Koji Kawamura <[email protected]> Committed: Fri May 26 14:12:02 2017 +0900 ---------------------------------------------------------------------- .../java/org/apache/nifi/remote/client/http/TestHttpClient.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/nifi/blob/118f4e8c/nifi-commons/nifi-site-to-site-client/src/test/java/org/apache/nifi/remote/client/http/TestHttpClient.java ---------------------------------------------------------------------- diff --git a/nifi-commons/nifi-site-to-site-client/src/test/java/org/apache/nifi/remote/client/http/TestHttpClient.java b/nifi-commons/nifi-site-to-site-client/src/test/java/org/apache/nifi/remote/client/http/TestHttpClient.java index ed85efe..c5cd4be 100644 --- a/nifi-commons/nifi-site-to-site-client/src/test/java/org/apache/nifi/remote/client/http/TestHttpClient.java +++ b/nifi-commons/nifi-site-to-site-client/src/test/java/org/apache/nifi/remote/client/http/TestHttpClient.java @@ -432,7 +432,7 @@ public class TestHttpClient { // Create embedded Jetty server // Use less threads to mitigate Gateway Timeout (504) with proxy test // Minimum thread pool size = (acceptors=2 + selectors=8 + request=1), defaults to max=200 - final QueuedThreadPool threadPool = new QueuedThreadPool(20); + final QueuedThreadPool threadPool = new QueuedThreadPool(50); server = new Server(threadPool); final ContextHandlerCollection handlerCollection = new ContextHandlerCollection();
