We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 24cc672 commit d572aa2Copy full SHA for d572aa2
1 file changed
core/src/main/java/com/luminiadev/eventbus/core/EventBusImpl.java
@@ -31,7 +31,7 @@ public class EventBusImpl implements EventBus {
31
public EventBusImpl() {
32
this(Executors.newCachedThreadPool(r -> {
33
Thread thread = new Thread(r);
34
- thread.setName("EventBus-Async-" + thread.threadId());
+ thread.setName("EventBus-Async-" + thread.getId());
35
thread.setDaemon(true);
36
return thread;
37
}));
0 commit comments