Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEike Stepper2015-12-12 10:45:19 +0000
committerEike Stepper2015-12-12 10:45:19 +0000
commite9142a81c6100d7a24b8f7eb428e317702e58458 (patch)
tree36f7196cb1af1b7b228a4fc750fda0547fe78c9f
parentebe852dbcbcddf0352f95c72bcd29556855c8051 (diff)
downloadcdo-e9142a81c6100d7a24b8f7eb428e317702e58458.tar.gz
cdo-e9142a81c6100d7a24b8f7eb428e317702e58458.tar.xz
cdo-e9142a81c6100d7a24b8f7eb428e317702e58458.zip
[Releng] Increase Config.MAXIMUM_POOL_SIZE for tests
-rw-r--r--plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/config/impl/Config.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/config/impl/Config.java b/plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/config/impl/Config.java
index 7ff0f66a57..349c70d994 100644
--- a/plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/config/impl/Config.java
+++ b/plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/config/impl/Config.java
@@ -26,7 +26,9 @@ public abstract class Config implements IConfig
{
private static final long serialVersionUID = 1L;
- protected static ExecutorService executorService = ThreadPool.create("test", 20, 100, 30);
+ private static final int MAXIMUM_POOL_SIZE = Integer.MAX_VALUE;
+
+ protected static ExecutorService executorService = ThreadPool.create("test", 20, MAXIMUM_POOL_SIZE, 30);
private String name;

Back to the top