RexXiong commented on code in PR #2735:
URL: https://github.com/apache/celeborn/pull/2735#discussion_r1759661735
##########
cli/src/main/scala/org/apache/celeborn/cli/master/MasterSubcommandImpl.scala:
##########
@@ -77,6 +78,14 @@ class MasterSubcommandImpl extends Runnable with
MasterSubcommand {
workerApi.excludeWorker(removeExcludeWorkerRequest)
}
+ private[master] def runRemoveWorkersUnavailableInfo: HandleResponse = {
+ val workerIds = getWorkerIds
+ val removeWorkersUnavailableInfoRequest =
+ new RemoveWorkersUnavailableInfoRequest().workers(workerIds)
+ logInfo(s"Sending remove workers unavailable info requests to workers:
$workerIds")
Review Comment:
```suggestion
logInfo(s"Sending remove workers unavailable info requests to master:
$workerIds")
```
--
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]