Skip to content

Commit

Permalink
Fix #6227 Async timeout dispatch race
Browse files Browse the repository at this point in the history
squelch exception

Signed-off-by: Greg Wilkins <gregw@webtide.com>
  • Loading branch information
gregw committed Apr 30, 2021
1 parent 9a03f4d commit c50cffa
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -235,7 +235,8 @@ public void doFilter(ServletRequest request, ServletResponse response, FilterCha
}
catch (IllegalStateException x)
{
LOG.warn(x);
if (LOG.isDebugEnabled())
LOG.debug(x);
continue;
}
}
Expand Down

0 comments on commit c50cffa

Please sign in to comment.