Fixed - LockEntry throws NPE. #6472

pull/6474/head
mrniko 1 week ago
parent 7114c607c1
commit 5f95893464

@ -51,6 +51,9 @@ public class LockTask extends RenewalTask {
String key = iter.next();
LockEntry entry = name2entry.get(key);
if (entry == null) {
continue;
}
Long threadId = entry.getFirstThreadId();
if (threadId == null) {
continue;

Loading…
Cancel
Save