Skip to content

Commit

Permalink
NIFI-3978 Increase threadpool size for S2S HTTP tests
Browse files Browse the repository at this point in the history
This closes apache#1858.

Signed-off-by: Koji Kawamura <[email protected]>
  • Loading branch information
jfrazee authored and ijokarumawak committed May 26, 2017
1 parent 5cb9281 commit 118f4e8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -432,7 +432,7 @@ public static void setup() throws Exception {
// 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();
Expand Down

0 comments on commit 118f4e8

Please sign in to comment.