Skip to content

Commit

Permalink
CerthAuth Filter defaults to filter request in case of error (#185)
Browse files Browse the repository at this point in the history
  • Loading branch information
f11h authored May 20, 2022
1 parent 11d8be0 commit 67b32f7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ protected boolean shouldNotFilter(HttpServletRequest request) {
}
} catch (Exception e) {
handlerExceptionResolver.resolveException(request, null, null, e);
return true;
return false;
}
}

Expand Down

0 comments on commit 67b32f7

Please sign in to comment.