https://bz.apache.org/bugzilla/show_bug.cgi?id=62792

--- Comment #2 from Julien Béti <jul...@beti.name> ---
I would suggest to keep the "if(reload)" outside the synchronized block, and
check again inside with "getReloadInternal()"

Something like

if(reload) {
   synchronized (this) {
    if(getReloadInternal()) {
      //...
    }
  }
}

-- 
You are receiving this mail because:
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org

Reply via email to