DomGarguilo commented on code in PR #5102:
URL: https://github.com/apache/accumulo/pull/5102#discussion_r1869848673
##########
core/src/main/java/org/apache/accumulo/core/client/admin/InstanceOperations.java:
##########
@@ -259,22 +259,22 @@ Set<ServerId> getServers(ServerId.Type type,
Predicate<String> resourceGroupPred
* @param tserver The tablet server address. This should be of the form
* {@code <ip address>:<port>}
* @return A list of active scans on tablet server.
- * @deprecated see {@link #getActiveScans(ServerId)}
+ * @deprecated see {@link #getActiveScans(Collection)}
*/
@Deprecated(since = "4.0.0")
List<ActiveScan> getActiveScans(String tserver)
throws AccumuloException, AccumuloSecurityException;
/**
- * List the active scans on a server.
+ * List the active scans on a collection of servers.
*
- * @param server server type and address
- * @return A stream of active scans on server.
+ * @param servers Collection of server types and addresses
+ * @return A stream of active scans on the given servers.
Review Comment:
```suggestion
* @return A list of active scans on the given servers.
```
--
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]