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 1c8d630 commit 42e6959
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -517,7 +517,8 @@ private static void flushAll(final ClientContext context) {
try {
flusher.join();
} 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);
}
}

Expand Down

0 comments on commit 42e6959

Please sign in to comment.