Tejaskriya commented on code in PR #8003:
URL: https://github.com/apache/ozone/pull/8003#discussion_r2144372295
##########
hadoop-hdds/common/src/main/java/org/apache/hadoop/hdds/utils/BackgroundService.java:
##########
@@ -92,6 +92,11 @@ public void setPoolSize(int size) {
exec.setCorePoolSize(size);
}
+ public synchronized void setServiceTimeoutInNanos(long newTimeout) {
+ LOG.info("{} timeout is {} {}", serviceName, newTimeout,
TimeUnit.NANOSECONDS.name().toLowerCase());
Review Comment:
Can we make this log a bit more clear?
```suggestion
LOG.info("{} timeout is set to {} {}", serviceName, newTimeout,
TimeUnit.NANOSECONDS.name().toLowerCase());
```
--
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]