Skip to content

Commit

Permalink
Update Jetty version
Browse files Browse the repository at this point in the history
Increase number of threads as required by Jetty.
  • Loading branch information
skodapetr committed Jul 2, 2018
1 parent 62d4273 commit 87935cc
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Expand Up @@ -101,7 +101,7 @@ private void buildServer() throws IOException {
}

private static QueuedThreadPool createThreadPool() {
final QueuedThreadPool threadPool = new QueuedThreadPool(3, 1);
final QueuedThreadPool threadPool = new QueuedThreadPool(4, 1);
threadPool.setName("web-server");
return threadPool;
}
Expand Down
Expand Up @@ -108,7 +108,7 @@ private void buildServer() throws IOException {
}

private static QueuedThreadPool createThreadPool() {
final QueuedThreadPool threadPool = new QueuedThreadPool(3, 1);
final QueuedThreadPool threadPool = new QueuedThreadPool(4, 1);
threadPool.setName("web-server");
return threadPool;
}
Expand Down
2 changes: 1 addition & 1 deletion pom-parent/pom.xml
Expand Up @@ -20,7 +20,7 @@
<jackson.version>2.7.2</jackson.version>
<springframework.version>4.3.4.RELEASE</springframework.version>
<rdf4j.version>2.2.1</rdf4j.version>
<jetty.version>9.3.14.v20161028</jetty.version>
<jetty.version>9.4.11.v20180605</jetty.version>
<lp.version>0.0.0</lp.version>
</properties>

Expand Down
Expand Up @@ -99,7 +99,7 @@ private void buildServer() throws IOException {
}

private static QueuedThreadPool createThreadPool() {
final QueuedThreadPool threadPool = new QueuedThreadPool(3, 1);
final QueuedThreadPool threadPool = new QueuedThreadPool(4, 1);
threadPool.setName("web-server");
return threadPool;
}
Expand Down

0 comments on commit 87935cc

Please sign in to comment.