s0nskar commented on code in PR #2704:
URL: https://github.com/apache/celeborn/pull/2704#discussion_r1730710737
##########
worker/src/main/scala/org/apache/celeborn/service/deploy/worker/Worker.scala:
##########
@@ -337,7 +337,7 @@ private[celeborn] class Worker(
conf.workerCleanThreads)
val asyncReplyPool: ScheduledExecutorService =
ThreadUtils.newDaemonSingleThreadScheduledExecutor("worker-rpc-async-replier")
- val timer = new HashedWheelTimer()
+ val timer = new
HashedWheelTimer(ThreadUtils.namedThreadFactory("worker-timer"))
Review Comment:
should we use `namedSingleThreadFactory` instead?
```suggestion
val timer = new
HashedWheelTimer(ThreadUtils.namedSingleThreadFactory("worker-timer"))
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]