hey,

I have see that a stopped Host send all 10 sec check events to
all LifecycleListeners.

A stop HostConfig can't reload or deploy new webapp really at a stopped host.
StandardHost code
public void backgroundProcess() {
lifecycle.fireLifecycleEvent("check", null);
}


better
StandardHost emitted check event only on started host.

  public void backgroundProcess() {
       if(started)
            lifecycle.fireLifecycleEvent("check", null);
   }


regards Peter



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to