Skip to content

Commit

Permalink
Update server/base/src/main/java/org/apache/accumulo/server/util/Admi…
Browse files Browse the repository at this point in the history
…n.java

Co-authored-by: Christopher Tubbs <[email protected]>
  • Loading branch information
dlmarion and ctubbsii authored Dec 23, 2024
1 parent db5068d commit 1c8d630
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -503,7 +503,8 @@ private static void flushAll(final ClientContext context) {
try {
flusher.join(1000);
} catch (InterruptedException e) {
log.warn("Interrupted while waiting to join Flush thread");
Thread.currentThread.interrupt();
log.warn("Interrupted while waiting to join Flush thread", e);
}

if (flushCount == flushesStarted.get()) {
Expand Down

0 comments on commit 1c8d630

Please sign in to comment.