```java
try {
connector.init();
} catch (Exception var9) {
String message =
sm.getString("standardService.connector.initFailed", new Object[]{connector});
log.error(message, var9);
if
(Boolean.getBoolean("org.apache.catalina.startup.EXIT_ON_INIT_FAILURE")) {
throw new LifecycleException(message);
}
}
```
Turns out that there's a ` if
(Boolean.getBoolean("org.apache.catalina.startup.EXIT_ON_INIT_FAILURE"))` check
that will decide whether tomcat will throw the exception out. By default, the
return value would be false because we haven't set the
`org.apache.catalina.startup.EXIT_ON_INIT_FAILURE` value, so it just skipped
the throw action.
[ Full content available at:
https://github.com/apache/incubator-dubbo/issues/3236 ]
This message was relayed via gitbox.apache.org for
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]