Merge pull request #3195 from burgleaf/watchdog_bugfix

Fix watchdog won't renew after reconnect
pull/3209/head
Nikita Koksharov 4 years ago committed by GitHub
commit b06c64e3bb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -286,6 +286,7 @@ public class RedissonLock extends RedissonExpirable implements RLock {
future.onComplete((res, e) -> {
if (e != null) {
log.error("Can't update lock " + getName() + " expiration", e);
EXPIRATION_RENEWAL_MAP.remove(getEntryName());
return;
}

Loading…
Cancel
Save