We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f73da7 commit 13efea4Copy full SHA for 13efea4
src/main/java/com/password4j/Utils.java
@@ -665,7 +665,7 @@ static ExecutorService createExecutorService()
665
{
666
ExecutorService executorService = Executors.newFixedThreadPool(AVAILABLE_PROCESSORS, runnable -> {
667
Thread thread = new Thread(THREAD_GROUP, runnable, "password4j-worker-" + THREAD_COUNTER.getAndIncrement());
668
- thread.setDaemon(false);
+ thread.setDaemon(true);
669
return thread;
670
});
671
0 commit comments