Skip to content

Commit

Permalink
treat interruptedException (#6975)
Browse files Browse the repository at this point in the history
  • Loading branch information
RamonJales authored Feb 19, 2024
1 parent 89f46a2 commit 8bbdb62
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ public static void main(String[] args) throws JMSException {
try {
Thread.sleep(5000l);
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
LOG.warn("Thread sleep interrupted", e);
Thread.currentThread().interrupt();
}
}
}
Expand Down

0 comments on commit 8bbdb62

Please sign in to comment.