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:
Shalin Shekhar Mangar 2014-11-24 10:17:40 +00:00
parent 02dc17d4cd
commit 5f34b81536
2 changed files with 4 additions and 1 deletions

View File

@ -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

View File

@ -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);
}
/**