dlmarion commented on code in PR #3626: URL: https://github.com/apache/accumulo/pull/3626#discussion_r1272410386
########## core/src/main/java/org/apache/accumulo/core/client/admin/InstanceOperations.java: ########## @@ -194,10 +211,24 @@ Map<String,String> modifyProperties(Consumer<Map<String,String>> mapMutator) * @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(Server)} */ + @Deprecated(since = "3.0.0") List<ActiveScan> getActiveScans(String tserver) throws AccumuloException, AccumuloSecurityException; + /** + * List the active scans on a tablet server. Review Comment: Resolved in f63dce0 ########## core/src/main/java/org/apache/accumulo/core/client/admin/InstanceOperations.java: ########## @@ -208,10 +239,26 @@ List<ActiveScan> getActiveScans(String tserver) * {@code <ip address>:<port>} * @return the list of active compactions * @since 1.5.0 + * @deprecated see {@link #getActiveCompactions(Server)} */ + @Deprecated(since = "3.0.0") List<ActiveCompaction> getActiveCompactions(String tserver) throws AccumuloException, AccumuloSecurityException; + /** + * List the active compaction running on a tablet server. Using this method with Review Comment: Resolved in f63dce0 -- 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: notifications-unsubscr...@accumulo.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org