dlmarion commented on code in PR #2665:
URL: https://github.com/apache/accumulo/pull/2665#discussion_r940240058
##########
core/src/main/java/org/apache/accumulo/core/clientImpl/ClientContext.java:
##########
@@ -332,6 +392,51 @@ public synchronized BatchWriterConfig
getBatchWriterConfig() {
return batchWriterConfig;
}
+ public static class ScanServerInfo {
+ public final UUID uuid;
+ public final String group;
+
+ public ScanServerInfo(UUID uuid, String group) {
+ this.uuid = uuid;
+ this.group = group;
+ }
+
+ }
Review Comment:
Removed class and replaced with Pair in
d416900f14ac0c0e88af37aff49cb3b97a6a8173
--
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]