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 41eb901 commit 3f542d9Copy full SHA for 3f542d9
util/src/main/java/io/kubernetes/client/util/Threads.java
@@ -23,9 +23,7 @@ public static ThreadFactory threadFactory(String format) {
23
final AtomicInteger threadNumber = new AtomicInteger(1);
24
return r -> {
25
Thread thread = defaultFactory.newThread(r);
26
- if (!thread.isDaemon()) {
27
- thread.setDaemon(true);
28
- }
+ // Daemon status inherited from default
29
thread.setName(String.format(format, threadNumber.getAndIncrement()));
30
return thread;
31
};
0 commit comments