in src/main/java/com/microsoft/dhalion/HealthManager.java [153:163]
private void start() throws InterruptedException, ExecutionException {
LOG.info("Starting Health Manager");
PoliciesExecutor policyExecutor = new PoliciesExecutor(healthPolicies);
ScheduledFuture<?> future = policyExecutor.start();
try {
future.get();
} finally {
policyExecutor.destroy();
metricsProvider.close();
}
}