TomcatEmbeddedServletContainer now fails fast, if there are exceptions during protocol handler startup (re-throw exception)

pull/132/head
nitram509 11 years ago committed by Dave Syer
parent 371fa489ee
commit c50fe0733b

@ -107,6 +107,8 @@ public class TomcatEmbeddedServletContainer implements EmbeddedServletContainer
}
catch (Exception ex) {
this.logger.error("Cannot start connector: ", ex);
throw new EmbeddedServletContainerException(
"Unable to start embdedded Tomcat connectors", ex);
}
}
}

Loading…
Cancel
Save