Fixed - RMapCache.destroy throws NPE. #4230

pull/4239/head
Nikita Koksharov 3 years ago
parent 59ff8e2245
commit 910ab5fdb7

@ -80,7 +80,7 @@ public class EvictionScheduler {
public void remove(String name) {
EvictionTask task = tasks.remove(name);
if (task != null) {
if (task != null && task.getScheduledFuture() != null) {
task.getScheduledFuture().cancel(false);
}
}

Loading…
Cancel
Save