keith-turner commented on code in PR #5786: URL: https://github.com/apache/accumulo/pull/5786#discussion_r2305174470
########## core/src/main/java/org/apache/accumulo/core/fate/AdminUtil.java: ########## @@ -417,9 +430,10 @@ public void print(Map<FateInstanceType,ReadOnlyFateStore<T>> readOnlyFateStores, for (TransactionStatus txStatus : fateStatus.getTransactions()) { fmt.format( - "%-15s fateId: %s status: %-18s locked: %-15s locking: %-15s op: %-15s created: %s%n", + "%-15s fateId: %s status: %-18s locked: %-15s locking: %-15s op: %-15s created: %s lock range: %s%n", txStatus.getFateOp(), txStatus.getFateId(), txStatus.getStatus(), txStatus.getHeldLocks(), - txStatus.getWaitingLocks(), txStatus.getTop(), txStatus.getTimeCreatedFormatted()); + txStatus.getWaitingLocks(), txStatus.getTop(), txStatus.getTimeCreatedFormatted(), + txStatus.getLockRange()); Review Comment: I did not see any changes that were needed. -- 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