You are viewing a plain text version of this content. The canonical link for it is here.
Posted to server-dev@james.apache.org by no...@apache.org on 2004/03/26 06:38:08 UTC

cvs commit: james-server/src/java/org/apache/james/util/watchdog InaccurateTimeoutWatchdog.java

noel        2004/03/25 21:38:08

  Modified:    src/java/org/apache/james/util/watchdog Tag: branch_2_1_fcs
                        InaccurateTimeoutWatchdog.java
  Log:
  correct boundary condition
  
  Revision  Changes    Path
  No                   revision
  No                   revision
  1.1.4.4   +1 -1      james-server/src/java/org/apache/james/util/watchdog/InaccurateTimeoutWatchdog.java
  
  Index: InaccurateTimeoutWatchdog.java
  ===================================================================
  RCS file: /home/cvs/james-server/src/java/org/apache/james/util/watchdog/InaccurateTimeoutWatchdog.java,v
  retrieving revision 1.1.4.3
  retrieving revision 1.1.4.4
  diff -u -r1.1.4.3 -r1.1.4.4
  --- InaccurateTimeoutWatchdog.java	15 Mar 2004 03:54:24 -0000	1.1.4.3
  +++ InaccurateTimeoutWatchdog.java	26 Mar 2004 05:38:08 -0000	1.1.4.4
  @@ -163,7 +163,7 @@
                           } else {
                               getLogger().debug("Watchdog has time to sleep " + timeToSleep);
                           }
  -                        if (timeToSleep < 0) {
  +                        if (timeToSleep <= 0) {
                               try {
                                   synchronized (this) {
                                       if ((isChecking) && (triggerTarget != null)) {
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: server-dev-unsubscribe@james.apache.org
For additional commands, e-mail: server-dev-help@james.apache.org