kevinrr888 commented on code in PR #5817: URL: https://github.com/apache/accumulo/pull/5817#discussion_r2293903345
########## core/src/main/java/org/apache/accumulo/core/fate/FateExecutor.java: ########## @@ -412,7 +418,9 @@ public void run() { } } finally { log.trace("A TransactionRunner is exiting..."); - Preconditions.checkState(runningTxRunners.remove(this)); + synchronized (runningTxRunners) { + Preconditions.checkState(runningTxRunners.remove(this)); + } Review Comment: But remove will synchronize internally. Am I missing something -- 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