Author: ron.sigal(a)jboss.com
Date: 2008-04-21 22:02:50 -0400 (Mon, 21 Apr 2008)
New Revision: 4033
Modified:
remoting2/branches/2.x/src/main/org/jboss/remoting/MicroRemoteClientInvoker.java
Log:
JBREM-956: Passes configuration map to LeasePinger constructor.
Modified:
remoting2/branches/2.x/src/main/org/jboss/remoting/MicroRemoteClientInvoker.java
===================================================================
---
remoting2/branches/2.x/src/main/org/jboss/remoting/MicroRemoteClientInvoker.java 2008-04-22
02:02:23 UTC (rev 4032)
+++
remoting2/branches/2.x/src/main/org/jboss/remoting/MicroRemoteClientInvoker.java 2008-04-22
02:02:50 UTC (rev 4033)
@@ -502,7 +502,7 @@
if(trace) { log.trace("server does have leasing enabled (with
default lease period of " + defaultLeasePeriod + ") and will start a new lease
pinger."); }
- leasePinger = new LeasePinger(this, invokerSessionID,
defaultLeasePeriod);
+ leasePinger = new LeasePinger(this, invokerSessionID,
defaultLeasePeriod, configuration);
leasePinger.addClient(clientSessionID, configuration, leasePeriod);
leasePinger.startPing();
}