Skip to content

Commit

Permalink
Hack for Grizzly
Browse files Browse the repository at this point in the history
  • Loading branch information
jfarcand committed May 30, 2014
1 parent f5c827b commit dccc181
Showing 1 changed file with 7 additions and 1 deletion.
Expand Up @@ -920,7 +920,13 @@ public boolean isAsyncStarted() {
*/
@Override
public boolean isAsyncSupported() {
return b.request.isAsyncSupported();
try {
return b.request.isAsyncSupported();
} catch(Exception ex) {
// Servlet 2.5 incompatible API.
logger.trace("", ex);
return false;
}
}

/**
Expand Down

0 comments on commit dccc181

Please sign in to comment.