kevinrr888 commented on code in PR #5416: URL: https://github.com/apache/accumulo/pull/5416#discussion_r2056550208
########## server/manager/src/main/java/org/apache/accumulo/manager/TabletGroupWatcher.java: ########## @@ -835,14 +833,15 @@ private void unassignDeadTablet(TabletLists tLists, TabletMetadata tm) throws Wa private void hostUnassignedTablet(TabletLists tLists, KeyExtent tablet, UnassignedTablet unassignedTablet) { // maybe it's a finishing migration - TServerInstance dest = manager.migrations.get(tablet); + TServerInstance dest = + manager.getContext().getAmple().readTablet(tablet, MIGRATION).getMigration(); if (dest != null) { // if destination is still good, assign it if (tLists.destinations.containsKey(dest)) { tLists.assignments.add(new Assignment(tablet, dest, unassignedTablet.getLastLocation())); } else { // get rid of this migration - manager.migrations.remove(tablet); + manager.getContext().getAmple().mutateTablet(tablet).deleteMigration().mutate(); Review Comment: Dropped in 0a9455cdea88f167179953a1eb8073bf7a77c2f3 -- 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