dlmarion commented on code in PR #3409:
URL: https://github.com/apache/accumulo/pull/3409#discussion_r1204618840
##########
server/manager/src/main/java/org/apache/accumulo/manager/TabletGroupWatcher.java:
##########
@@ -219,13 +240,24 @@ public void run() {
// towards their goal
iter = store.iterator();
while (iter.hasNext()) {
- TabletLocationState tls = iter.next();
- if (tls == null) {
+ final ManagerTabletInfo mti = iter.next();
+ if (mti == null) {
+ LOG.debug("ManagerTabletInfoIterator returned null
ManagerTabletInfo");
Review Comment:
I modified this to throw an IllegalStateException in 9153726
--
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]