executorService.awaitTermination(5, TimeUnit.SECONDS);
} catch (InterruptedException e) {
LOG.error("Error during stop of notification service", e);
+ Thread.currentThread().interrupt();
}
LOG.info("Notification service stopped");
}
groupDao = getDao(map, GroupDao.class);
ruleDao = getDao(map, RuleDao.class);
activeRuleDao = getDao(map, ActiveRuleDao.class);
- doOnLoad(map);
- }
-
- // should be removed, but till used by sonar-server
- protected void doOnLoad(Map<Class, Dao> daoByClass) {
-
}
public DbSession openSession(boolean batch) {