change logging level, nodes FD will detect it as well
This commit is contained in:
parent
48d33ec70a
commit
8d45901a8a
|
@ -69,7 +69,7 @@ public class PublishClusterStateAction extends AbstractComponent {
|
||||||
}
|
}
|
||||||
transportService.sendRequest(node, PublishClusterStateRequestHandler.ACTION, new PublishClusterStateRequest(clusterState), new VoidTransportResponseHandler(false) {
|
transportService.sendRequest(node, PublishClusterStateRequestHandler.ACTION, new PublishClusterStateRequest(clusterState), new VoidTransportResponseHandler(false) {
|
||||||
@Override public void handleException(RemoteTransportException exp) {
|
@Override public void handleException(RemoteTransportException exp) {
|
||||||
logger.warn("failed to send cluster state to [{}], should be detected as failed soon...", exp, node);
|
logger.debug("failed to send cluster state to [{}], should be detected as failed soon...", exp, node);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue