Fixed
Details
Assignee
Guus der KinderenGuus der KinderenReporter
Guus der KinderenGuus der KinderenFix versions
Priority
Minor
Details
Details
Assignee
Guus der Kinderen
Guus der KinderenReporter
Guus der Kinderen
Guus der KinderenFix versions
Priority
Created November 5, 2022 at 9:31 AM
Updated November 23, 2022 at 2:18 PM
Resolved November 23, 2022 at 2:18 PM
Openfire uses a lot of thread pool. Many of these are managed by Executor services.
The default implementation of these services give nondescript names to the threads that they use, like:
pool-5-thread-1
.Giving the threads a name that identify their origin can be useful for debugging purposes.
org.jivesoftware.util.NamedThreadFactory
can be used to define the name of threads created by Executors.