fix incorrect warn message about lease duration and keep alive

This commit is contained in:
gtully 2015-06-12 12:25:35 +01:00
parent ce16735bb0
commit f45ce09655
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ public class LeaseDatabaseLocker extends AbstractJDBCLocker {
if (lockAcquireSleepInterval < lockable.getLockKeepAlivePeriod()) {
LOG.warn("LockableService keep alive period: " + lockable.getLockKeepAlivePeriod()
+ ", which renews the lease, is less than lockAcquireSleepInterval: " + lockAcquireSleepInterval
+ ", which renews the lease, is greater than lockAcquireSleepInterval: " + lockAcquireSleepInterval
+ ", the lease duration. These values will allow the lease to expire.");
}