minor - the change to set threadpool default min size to 10 in previous revision is incomplete.

This commit is contained in:
Heng Sin Low 2012-08-23 19:07:54 +08:00
parent 287e78722f
commit 0db426e772
1 changed files with 1 additions and 1 deletions

View File

@ -545,7 +545,7 @@ public final class Adempiere
} // startup } // startup
private static void createThreadPool() { private static void createThreadPool() {
int min = 20; int min = 10;
int max = 200; int max = 200;
Properties properties = Ini.getProperties(); Properties properties = Ini.getProperties();
String maxSize = properties.getProperty("MaxThreadPoolSize"); String maxSize = properties.getProperty("MaxThreadPoolSize");