RedissonRedLock unlock fixed

pull/555/head
Nikita 9 years ago
parent 0b5a890ed3
commit 99b5c9346e

@ -73,6 +73,11 @@ public class RedissonRedLock extends RedissonMultiLock {
return locks.size()/2 + 1;
}
@Override
public void unlock() {
unlockInner(locks);
}
@Override
protected boolean isLockFailed(Future<Boolean> future) {
return false;

Loading…
Cancel
Save