Skip to content
This repository has been archived by the owner on May 12, 2021. It is now read-only.

Commit

Permalink
increasing event receiver default pool size to 25
Browse files Browse the repository at this point in the history
  • Loading branch information
Isuru Haththotuwa committed Dec 25, 2015
1 parent c90eb9a commit 574c6d2
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public abstract class StratosEventReceiver {
// executor service used
protected ExecutorService executorService;
// pool size
protected static int threadPoolSize = 15;
protected static int threadPoolSize = 25;

static {
// check if the thread pool size is given as a system parameter
Expand All @@ -55,7 +55,7 @@ public abstract class StratosEventReceiver {
threadPoolSize = Integer.parseInt(poolSize);
} catch (NumberFormatException e) {
log.error("Invalid configuration found for StratosEventReceiver thread pool size", e);
threadPoolSize = 15;
threadPoolSize = 25;
}
}
if (log.isDebugEnabled()) {
Expand Down

0 comments on commit 574c6d2

Please sign in to comment.