Skip to content

Commit

Permalink
CAMEL-20297 camel-wal: do not swallow interrupted exceptions
Browse files Browse the repository at this point in the history
  • Loading branch information
orpiske committed Jan 11, 2024
1 parent 94933f3 commit 3c77534
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ public void stop() {
}
} catch (InterruptedException e) {
LOG.error("Failed to shutdown log flusher: {}", e.getMessage(), e);
Thread.currentThread().interrupt();
}
}
}

0 comments on commit 3c77534

Please sign in to comment.