Add exception handling in DominantPoller

This commit is contained in:
malkoas 2022-12-12 12:07:17 +03:00
parent f02e8271f2
commit 72f4c1764b

View File

@ -35,7 +35,7 @@ public class DominantPoller {
pullRange.entrySet().stream()
.sorted(Map.Entry.comparingByKey())
.forEach(e -> handleDominantData(after, versionId, e));
} catch (TException e) {
} catch (Exception e) {
log.warn("Error to polling dominant, after={}", after, e);
}
}