removed log statements
Original commit: elastic/x-pack-elasticsearch@c4b7b16cd4
This commit is contained in:
parent
aeacbe44ca
commit
984d7d615a
|
@ -265,7 +265,6 @@ public class AlertManager extends AbstractComponent {
|
|||
if (configurationManager.start(initialState)) {
|
||||
break;
|
||||
}
|
||||
logger.error("CONFIG NOT STARTED");
|
||||
clusterState = newClusterState(clusterState);
|
||||
}
|
||||
// Try to load alert store before the action manager, b/c action depends on alert store
|
||||
|
@ -273,14 +272,12 @@ public class AlertManager extends AbstractComponent {
|
|||
if (alertsStore.start(clusterState)) {
|
||||
break;
|
||||
}
|
||||
logger.error("STORE NOT STARTED");
|
||||
clusterState = newClusterState(clusterState);
|
||||
}
|
||||
while (true) {
|
||||
if (actionManager.start(clusterState)) {
|
||||
break;
|
||||
}
|
||||
logger.error("ACTION NOT STARTED");
|
||||
clusterState = newClusterState(clusterState);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue