dlmarion commented on code in PR #5668: URL: https://github.com/apache/accumulo/pull/5668#discussion_r2205606900
########## server/base/src/main/java/org/apache/accumulo/server/manager/state/TabletManagementIterator.java: ########## @@ -232,17 +233,34 @@ public Entry<Key,Value> next() { }; final Set<ManagementAction> actions = new HashSet<>(); - final TabletMetadata tm = - TabletMetadata.convertRow(kvIter, TabletManagement.CONFIGURED_COLUMNS, false, true); - Exception error = null; + TabletMetadata tm = null; + KeyExtent extent = null; try { - LOG.trace("Evaluating extent: {}", tm); - computeTabletManagementActions(tm, actions); - } catch (Exception e) { - LOG.error("Error computing tablet management actions for extent: {}", tm.getExtent(), e); + tm = TabletMetadata.convertRow(kvIter, TabletManagement.CONFIGURED_COLUMNS, false, true); + } catch (RuntimeException e) { + LOG.error("Failed to convert tablet metadata at row: {}", Review Comment: Applied suggested change in e626bce -- 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