Skip to content

Commit

Permalink
#5 avoid error log in shutdown
Browse files Browse the repository at this point in the history
  • Loading branch information
Thorsten Marx committed Sep 24, 2023
1 parent 421cb17 commit 2055990
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,8 @@ public void update() {
} else if (message instanceof DropCollectionMessage dropCollectionCommand) {
dropCollection(dropCollectionCommand);
}

} catch (InterruptedException ie) {
// nothing to to here
} catch (Exception ex) {
log.error("", ex);
}
Expand Down

0 comments on commit 2055990

Please sign in to comment.