Skip to content

Commit

Permalink
chore: change network thread names to better match vanilla
Browse files Browse the repository at this point in the history
  • Loading branch information
ishland committed Feb 3, 2024
1 parent 140017a commit a149f82
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public class VMPEventLoops {
2,
new ThreadFactoryBuilder()
.setThreadFactory(FastThreadLocalThread::new)
.setNameFormat("Netty Login IO Thread #%d")
.setNameFormat("Netty Server Login IO #%d")
.setDaemon(true)
.build()
)
Expand All @@ -32,7 +32,7 @@ public class VMPEventLoops {
0,
new ThreadFactoryBuilder()
.setThreadFactory(FastThreadLocalThread::new)
.setNameFormat("Netty Play IO Thread #%d")
.setNameFormat("Netty Server Play IO #%d")
.setDaemon(true)
.build()
)
Expand All @@ -43,7 +43,7 @@ public class VMPEventLoops {
2,
new ThreadFactoryBuilder()
.setThreadFactory(FastThreadLocalThread::new)
.setNameFormat("Netty Epoll Login IO Thread #%d")
.setNameFormat("Netty Epoll Server Login IO #%d")
.setDaemon(true)
.build()
)
Expand All @@ -54,7 +54,7 @@ public class VMPEventLoops {
0,
new ThreadFactoryBuilder()
.setThreadFactory(FastThreadLocalThread::new)
.setNameFormat("Netty Epoll Play IO Thread #%d")
.setNameFormat("Netty Epoll Server Play IO #%d")
.setDaemon(true)
.build()
)
Expand Down

0 comments on commit a149f82

Please sign in to comment.