try { Thread.sleep(500); } catch ( Exception ignore ){}
if ( (++errorCounter)>=recoveryCounter ) {
errorCounter=0;
- new RecoveryThread(McastServiceImpl.this);
+ new RecoveryThread(McastServiceImpl.this).start();
}
}
}
else log.debug("Unable to send mcast message.",x);
if ( (++errorCounter)>=recoveryCounter ) {
errorCounter=0;
- new RecoveryThread(McastServiceImpl.this);
+ new RecoveryThread(McastServiceImpl.this).start();
}
}
try { Thread.sleep(time); } catch ( Exception ignore ) {}
<add>
Internationalise the log messages for the FarmWarDeployer. (markt)
</add>
+ <fix>
+ The recovery feature of the default cluster membership service can now
+ be enabled. Previously it any configuration settings for it were
+ ignored. (markt)
+ </fix>
</changelog>
</subsection>
<subsection name="Web applications">
</attribute>
<attribute name="recoveryCounter" required="false">
<p>
- When <code>recoveryEnabled==true</code> this value indicates how many times we will try recovery.
- The default is <code>10</code>. <br/>
+ When <code>recoveryEnabled==true</code> this value indicates how many
+ times an error has to occur before recovery is attempted. The default is
+ <code>10</code>. <br/>
</p>
</attribute>
<attribute name="recoverySleepTime" required="false">