Skip to content

Commit

Permalink
IGNITE-18473 Add InterruptedException handling in CdcCommandLineStart…
Browse files Browse the repository at this point in the history
…up#main (#10466)
  • Loading branch information
shishkovilja committed Dec 30, 2022
1 parent db7758c commit e9dbca1
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,9 @@ public static void main(String[] args) {

appThread.join();
}
catch (InterruptedException ignore) {
X.error("CDC was interrupted.");
}
catch (Throwable e) {
e.printStackTrace();

Expand Down

0 comments on commit e9dbca1

Please sign in to comment.