dlmarion commented on code in PR #3447:
URL: https://github.com/apache/accumulo/pull/3447#discussion_r1218079433
##########
server/base/src/main/java/org/apache/accumulo/server/manager/state/MetaDataStateStore.java:
##########
@@ -49,7 +52,13 @@ protected MetaDataStateStore(ClientContext context,
CurrentState state, String t
@Override
public ClosableIterator<TabletManagement> iterator() {
- return new TabletManagementScanner(context, TabletsSection.getRange(),
state, targetTableName);
+ return new TabletManagementScanner(context, TabletsSection.getRange(),
state, targetTableName,
+ knownStateChanges);
+ }
+
+ @Override
+ public void knownTabletStateChange(TabletManagement tablet) {
+ this.knownStateChanges.add(tablet);
Review Comment:
I don't have access to the `EventCoordinator` object here. I'll see what
would have to change to make that happen.
--
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]