fix throw exception

This commit is contained in:
Mohamed Karray
2018-10-16 12:20:10 +02:00
parent d2dbccb80c
commit c731ecd14d

View File

@@ -83,7 +83,7 @@ public final class HealthChecker {
if (check.isPermitted(repository)) {
try {
check(repository);
} catch (ConcurrentModificationException | NotFoundException ex) {
} catch (NotFoundException ex) {
logger.error("health check ends with exception", ex);
}
} else {