-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
only one shutdown hooks allowed, locks during LoggerContext.stop oper…
…ation, fixes LOGBACK-1551 Signed-off-by: Ceki Gulcu <[email protected]>
- Loading branch information
Showing
16 changed files
with
315 additions
and
103 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
81 changes: 81 additions & 0 deletions
81
logback-classic/src/test/java/ch/qos/logback/classic/Logback1551.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
/* | ||
* Logback: the reliable, generic, fast and flexible logging framework. | ||
* Copyright (C) 1999-2024, QOS.ch. All rights reserved. | ||
* | ||
* This program and the accompanying materials are dual-licensed under | ||
* either the terms of the Eclipse Public License v1.0 as published by | ||
* the Eclipse Foundation | ||
* | ||
* or (per the licensee's choosing) | ||
* | ||
* under the terms of the GNU Lesser General Public License version 2.1 | ||
* as published by the Free Software Foundation. | ||
*/ | ||
|
||
package ch.qos.logback.classic; | ||
|
||
import ch.qos.logback.core.util.Duration; | ||
import org.junit.jupiter.api.BeforeEach; | ||
import org.junit.jupiter.api.Test; | ||
|
||
import java.util.Arrays; | ||
import java.util.concurrent.ScheduledExecutorService; | ||
import java.util.concurrent.ScheduledFuture; | ||
import java.util.concurrent.TimeUnit; | ||
|
||
public class Logback1551 { | ||
LoggerContext lc; | ||
|
||
@BeforeEach | ||
public void setUp() throws Exception { | ||
lc = new LoggerContext(); | ||
lc.setName("x"); | ||
} | ||
@Test | ||
public void testConcurrentModificationScheduledTasks() { | ||
ScheduledExecutorService scheduledExecutorService = lc.getScheduledExecutorService(); | ||
Duration duration = Duration.buildByMilliseconds(10); | ||
|
||
Runnable runnable = new Runnable() { | ||
public void run() { | ||
try { | ||
Thread.sleep(100); | ||
} catch (InterruptedException e) { | ||
throw new RuntimeException(e); | ||
} | ||
} | ||
}; | ||
ScheduledFuture<?> scheduledFuture = scheduledExecutorService.scheduleAtFixedRate(runnable, | ||
duration.getMilliseconds(), duration.getMilliseconds(), TimeUnit.MILLISECONDS); | ||
|
||
lc.addScheduledFuture(scheduledFuture); | ||
int THREAD_COUNT = 20; | ||
Thread[] threads = new Thread[THREAD_COUNT]; | ||
|
||
for (int i = 0; i < THREAD_COUNT; i++) { | ||
threads[i] = new Thread(new CancelRunnable(lc)); | ||
threads[i].start(); | ||
} | ||
|
||
Arrays.stream(threads).forEach(t-> { | ||
try { | ||
t.join(); | ||
} catch (InterruptedException e) { | ||
throw new RuntimeException(e); | ||
} | ||
}); | ||
|
||
} | ||
|
||
private class CancelRunnable implements Runnable { | ||
LoggerContext lc; | ||
public CancelRunnable(LoggerContext lc) { | ||
this.lc = lc; | ||
} | ||
|
||
@Override | ||
public void run() { | ||
lc.cancelScheduledTasks(); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.