mirror of https://github.com/apache/lucene.git
raise the length of time that we are willing to wait for searchers to be closed
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1236440 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
b414855e41
commit
231445f166
|
@ -127,7 +127,7 @@ public abstract class SolrTestCaseJ4 extends LuceneTestCase {
|
||||||
// wait a bit in case any ending threads have anything to release
|
// wait a bit in case any ending threads have anything to release
|
||||||
int retries = 0;
|
int retries = 0;
|
||||||
while (endNumOpens - numOpens != endNumCloses - numCloses) {
|
while (endNumOpens - numOpens != endNumCloses - numCloses) {
|
||||||
if (retries++ > 15) {
|
if (retries++ > 30) {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
try {
|
try {
|
||||||
|
|
Loading…
Reference in New Issue