Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
injectives committed Nov 5, 2024
1 parent f75a908 commit b9dcea6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -526,7 +526,7 @@ private void updateState(Throwable throwable) {
} else {
stateRef.set(BoltConnectionState.CLOSED);
}
} else if (throwable instanceof BoltFailureException) {
} else if (throwable instanceof BoltFailureException || throwable instanceof MessageIgnoredException) {
if (throwable instanceof AuthorizationExpiredException) {
stateRef.compareAndExchange(BoltConnectionState.OPEN, BoltConnectionState.ERROR);
} else {
Expand Down

0 comments on commit b9dcea6

Please sign in to comment.