mirror of https://github.com/apache/lucene.git
SOLR-6459: Fix passing the wrong queue.
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1641996 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
a08638508c
commit
8eae2c82e3
|
@ -420,7 +420,7 @@ Other Changes
|
|||
(Mark Miller, Gregory Chanan)
|
||||
|
||||
* SOLR-6459: Normalize logging of operations in Overseer and log current queue size.
|
||||
(Ramkumar Aiyengar via Mark Miller)
|
||||
(Ramkumar Aiyengar, shalin via Mark Miller)
|
||||
|
||||
* SOLR-6754: ZkController.publish doesn't use the updateLastState parameter.
|
||||
(shalin)
|
||||
|
|
|
@ -314,7 +314,7 @@ public class Overseer implements Closeable {
|
|||
|
||||
final TimerContext timerContext = stats.time(operation);
|
||||
try {
|
||||
clusterState = processMessage(clusterState, message, operation, workQueue.getStats().getQueueLength());
|
||||
clusterState = processMessage(clusterState, message, operation, stateUpdateQueue.getStats().getQueueLength());
|
||||
stats.success(operation);
|
||||
} catch (Exception e) {
|
||||
// generally there is nothing we can do - in most cases, we have
|
||||
|
|
Loading…
Reference in New Issue