mirror of https://github.com/apache/lucene.git
SOLR-7979: Fix two typos (in a CoreAdminHandler log message and a TestCloudPivotFacet comment).
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1698229 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
bb32ecb0fd
commit
8ce033a971
|
@ -217,6 +217,9 @@ Other Changes
|
|||
* SOLR-7942: Previously removed unlockOnStartup option (LUCENE-6508) now logs warning if configured,
|
||||
will be an error in 6.0. Also improved error msg if an index is locked on startup (hossman)
|
||||
|
||||
* SOLR-7979: Fix two typos (in a CoreAdminHandler log message and a TestCloudPivotFacet comment).
|
||||
(Mike Drob via Christine Poerschke)
|
||||
|
||||
================== 5.3.0 ==================
|
||||
|
||||
Consult the LUCENE_CHANGES.txt file for additional, low level, changes in this release
|
||||
|
|
|
@ -883,7 +883,7 @@ public class CoreAdminHandler extends RequestHandlerBase {
|
|||
throw new SolrException(ErrorCode.SERVER_ERROR, "Sync Failed");
|
||||
}
|
||||
} else {
|
||||
SolrException.log(log, "Cound not find core to call sync:" + cname);
|
||||
SolrException.log(log, "Could not find core to call sync:" + cname);
|
||||
}
|
||||
} finally {
|
||||
// no recoveryStrat close for now
|
||||
|
|
|
@ -291,7 +291,7 @@ public class TestCloudPivotFacet extends AbstractFullDistribZkTestBase {
|
|||
}
|
||||
|
||||
/**
|
||||
* Recursive Helper method for asserting that pivot constraint counds match
|
||||
* Recursive Helper method for asserting that pivot constraint counts match
|
||||
* results when filtering on those constraints. Returns the recursive depth reached
|
||||
* (for sanity checking)
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue