Skip to content

Commit 1be901b

Browse files
committed
Bug 36426730 - [36426181->24.09] Update the default value of 100 for coherence.executor.concurrent.tasks.max to Integer.MAX_VALUE (merge main -> ce/main @ 107754)
[git-p4: depot-paths = "//dev/coherence-ce/main/": change = 107755]
1 parent 231214e commit 1be901b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

prj/coherence-concurrent/src/main/java/com/oracle/coherence/concurrent/executor/internal/ClusteredTaskInterceptor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -727,7 +727,7 @@ public void writeExternal(PofWriter out) throws IOException
727727
* The maximum tasks allowed to be run.
728728
*/
729729
protected final int f_cMaxAllowedTasks =
730-
Config.getInteger("coherence.executor.concurrent.tasks.max",100);
730+
Config.getInteger("coherence.executor.concurrent.tasks.max", Integer.MAX_VALUE);
731731

732732
/**
733733
* The number of orchestrated tasks.

0 commit comments

Comments
 (0)