RedissonCacheEvictScheduler failed future handling. #195

pull/337/head
Nikita 9 years ago
parent f6e7545c41
commit d3a39298a9

@ -70,6 +70,11 @@ public class RedissonCacheEvictScheduler {
future.addListener(new FutureListener<Integer>() {
@Override
public void operationComplete(Future<Integer> future) throws Exception {
if (!future.isSuccess()) {
schedule();
return;
}
Integer size = future.getNow();
if (sizeHistory.size() == 2) {

Loading…
Cancel
Save