Author: ron.sigal(a)jboss.com
Date: 2009-09-02 21:48:37 -0400 (Wed, 02 Sep 2009)
New Revision: 5441
Modified:
remoting2/branches/2.2/src/main/org/jboss/remoting/Lease.java
Log:
JBREM-1150: Changed test in updateLease() from > to >=.
Modified: remoting2/branches/2.2/src/main/org/jboss/remoting/Lease.java
===================================================================
--- remoting2/branches/2.2/src/main/org/jboss/remoting/Lease.java 2009-09-02 23:41:45 UTC
(rev 5440)
+++ remoting2/branches/2.2/src/main/org/jboss/remoting/Lease.java 2009-09-03 01:48:37 UTC
(rev 5441)
@@ -109,7 +109,7 @@
String timeString = (String) requestMap.get(LeasePinger.TIME_STAMP);
time = Long.valueOf(timeString).longValue();
if (isTraceEnabled) log.trace(this + " last update: " +
lastUpdate + ", this update: " + time);
- if (time > lastUpdate)
+ if (time >= lastUpdate)
{
lastUpdate = time;
doUpdate(requestMap);
Show replies by date