mirror of https://github.com/apache/lucene.git
SOLR-6754: ZkController.publish doesn't use the updateLastState parameter
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1641354 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
02dc17d4cd
commit
5f34b81536
|
@ -414,6 +414,9 @@ Other Changes
|
|||
* SOLR-6459: Normalize logging of operations in Overseer and log current queue size.
|
||||
(Ramkumar Aiyengar via Mark Miller)
|
||||
|
||||
* SOLR-6754: ZkController.publish doesn't use the updateLastState parameter.
|
||||
(shalin)
|
||||
|
||||
================== 4.10.3 ==================
|
||||
|
||||
Bug Fixes
|
||||
|
|
|
@ -1079,7 +1079,7 @@ public final class ZkController {
|
|||
}
|
||||
|
||||
public void publish(final CoreDescriptor cd, final String state, boolean updateLastState) throws KeeperException, InterruptedException {
|
||||
publish(cd, state, true, false);
|
||||
publish(cd, state, updateLastState, false);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue