mapper.addHost(host.getName(), aliases, host);
for (Container container : host.findChildren()) {
- registerContext((Context) container);
+ if (container.getState().isAvailable()) {
+ registerContext((Context) container);
+ }
}
if(log.isDebugEnabled()) {
log.debug(sm.getString("mapperListener.registerHost",
(greater than 100ms) at INFO level and provide a value for the message
key so a meaningful message appears in the logs. (markt)
</fix>
+ <fix>
+ Don't register Contexts that fail to start with the Mapper. (markt)
+ </fix>
</changelog>
</subsection>
<subsection name="Coyote">