Skip to content

Commit

Permalink
CAMEL-20297 camel-iec60870: 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 558e5b3 commit 94933f3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ public void start() {
try {
latch.await(this.options.getConnectionTimeout(), TimeUnit.MILLISECONDS);
} catch (InterruptedException e) {
// ignore
Thread.currentThread().interrupt();
}
}

Expand Down

0 comments on commit 94933f3

Please sign in to comment.