Skip to content

Commit

Permalink
Fixes #1622
Browse files Browse the repository at this point in the history
  • Loading branch information
jfarcand committed Jun 5, 2014
1 parent 78e62ed commit b159290
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,8 @@ protected AtmosphereServlet configureFramework(ServletConfig sc) throws ServletE
try {
framework = (AtmosphereFramework) sc.getServletContext()
.getAttribute(sc.getServletContext().getServletRegistration(sc.getServletName()).getName());
} catch (UnsupportedOperationException ex) {
} catch (Exception ex) {
// Equinox throw an exception (NPE)
// WebLogic Crap => https://github.com/Atmosphere/atmosphere/issues/1569
logger.trace("", ex);
}
Expand Down

0 comments on commit b159290

Please sign in to comment.