mirror of https://github.com/apache/lucene.git
commit 19ec48d8a22461fb5723d9e3b81e87a59f3337a3
Author: Erick <erick@apache.org> Date: Mon Sep 4 19:00:12 2017 -0700 SOLR-10101: TestLazyCores hangs
This commit is contained in:
parent
c6a5f10fd3
commit
5436395325
|
@ -120,6 +120,8 @@ Bug Fixes
|
|||
|
||||
* SOLR-11293: Potential data loss in TLOG replicas after replication failures (noble)
|
||||
|
||||
* SOLR-10101: TestLazyCores hangs (Erick Erickson)
|
||||
|
||||
Optimizations
|
||||
----------------------
|
||||
|
||||
|
|
|
@ -781,7 +781,6 @@ public class TestLazyCores extends SolrTestCaseJ4 {
|
|||
}
|
||||
}
|
||||
|
||||
@BadApple(bugUrl = "https://issues.apache.org/jira/browse/SOLR-10101")
|
||||
// Insure that when a core is aged out of the transient cache, any uncommitted docs are preserved.
|
||||
// Note, this needs FS-based indexes to persist!
|
||||
// Cores 2, 3, 6, 7, 8, 9 are transient
|
||||
|
@ -814,7 +813,8 @@ public class TestLazyCores extends SolrTestCaseJ4 {
|
|||
openCores.clear();
|
||||
|
||||
// We still should have 6, 7, 8, 9 loaded, their reference counts have NOT dropped to zero
|
||||
checkInCores(cc, "collection6", "collection7", "collection8", "collection9");
|
||||
checkInCores(cc, "collection1", "collection5",
|
||||
"collection6", "collection7", "collection8", "collection9");
|
||||
|
||||
for (String coreName : coreList) {
|
||||
// The point of this test is to insure that when cores are aged out and re-opened
|
||||
|
|
Loading…
Reference in New Issue