mirror of https://github.com/apache/lucene.git
SOLR-5811: Improve logged message.
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1574753 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
7f31dc2d7d
commit
d23a3374e1
|
@ -131,7 +131,7 @@ public class Overseer {
|
|||
// ZooKeeper in which case another Overseer should take over
|
||||
// TODO: if ordering for the message is not important, we could
|
||||
// track retries and put it back on the end of the queue
|
||||
log.error("Could not process Overseer message", e);
|
||||
log.error("Overseer could not process the current clusterstate state update message, skipping the message.", e);
|
||||
}
|
||||
zkClient.setData(ZkStateReader.CLUSTER_STATE,
|
||||
ZkStateReader.toJSON(clusterState), true);
|
||||
|
@ -206,7 +206,7 @@ public class Overseer {
|
|||
// ZooKeeper in which case another Overseer should take over
|
||||
// TODO: if ordering for the message is not important, we could
|
||||
// track retries and put it back on the end of the queue
|
||||
log.error("Could not process Overseer message", e);
|
||||
log.error("Overseer could not process the current clusterstate state update message, skipping the message.", e);
|
||||
}
|
||||
workQueue.offer(head.getBytes());
|
||||
|
||||
|
|
Loading…
Reference in New Issue