This commit is contained in:
Ivan Nikolaev-Axenov 2024-09-02 12:43:07 +03:00
parent 4256c05345
commit 3a43598223

View file

@ -112,7 +112,11 @@ public abstract class HazelcastServiceBase
break;
}
});
} catch (Throwable e) {
} catch (InterruptedException e) {
log.info("Hazelcast: event interrupted");
Thread.currentThread().interrupt();
}
catch (Throwable e) {
log.error("reinitializeHazelcastClient() has error: {}", ExceptionUtils.getStackTrace(e));
}
}