s0nskar commented on code in PR #2445:
URL: https://github.com/apache/celeborn/pull/2445#discussion_r1552240121
##########
common/src/main/scala/org/apache/celeborn/common/CelebornConf.scala:
##########
@@ -4813,6 +4813,7 @@ object CelebornConf extends Logging {
.doc("Number of threads used by the Master to send ApplicationMeta to
Workers.")
.version("0.5.0")
.intConf
+ .checkValue(v => v > 0, "number of threads should be positive")
Review Comment:
nit:
```suggestion
.checkValue(_ > 0, "number of threads should be positive")
```
--
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]