Skip to content

Commit

Permalink
MetricsFilter should pass request to next filter in the chain if unab…
Browse files Browse the repository at this point in the history
…le to time (fixes #224)
  • Loading branch information
jkschneider committed Nov 16, 2017
1 parent c76be52 commit 742d504
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ protected void doFilterInternal(HttpServletRequest request, HttpServletResponse
handler = matchableHandlerMapping.getHandler(request);
} catch (Exception e) {
logger.debug("Unable to time request", e);
filterChain.doFilter(request, response);
return;
}

Expand Down

0 comments on commit 742d504

Please sign in to comment.