We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 32ed4af commit 51bf2fcCopy full SHA for 51bf2fc
logback-core/src/main/java/ch/qos/logback/core/CoreConstants.java
@@ -24,12 +24,6 @@ public class CoreConstants {
24
*/
25
public static final int CORE_POOL_SIZE = 0;
26
27
- // Apparently ScheduledThreadPoolExecutor has limitation where a task cannot be
28
- // submitted from within a running task unless the pool has worker threads already available.
29
- // ThreadPoolExecutor does not have this limitation.
30
- // This causes tests failures in SocketReceiverTest.testDispatchEventForEnabledLevel and
31
- // ServerSocketReceiverFunctionalTest.testLogEventFromClient.
32
- // We thus set a pool size > 0 for tests to pass.
33
public static final int SCHEDULED_EXECUTOR_POOL_SIZE = 2;
34
35
/**
logback-core/src/test/java/ch/qos/logback/core/SchedulerTest.java
0 commit comments