SOLR-8364: fix test bug

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1720810 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
James Dyer 2015-12-18 15:28:06 +00:00
parent d5ebe9cd85
commit 0e0517414c
1 changed files with 14 additions and 1 deletions

View File

@ -19,7 +19,20 @@
<config>
<luceneMatchVersion>${tests.luceneMatchVersion:LATEST}</luceneMatchVersion>
<xi:include href="solrconfig.snippet.randomindexconfig.xml" xmlns:xi="http://www.w3.org/2001/XInclude"/>
<indexConfig>
<mergePolicy class="${solr.tests.mergePolicy:org.apache.solr.util.RandomMergePolicy}" />
<useCompoundFile>${useCompoundFile:false}</useCompoundFile>
<maxBufferedDocs>${solr.tests.maxBufferedDocs}</maxBufferedDocs>
<ramBufferSizeMB>${solr.tests.ramBufferSizeMB}</ramBufferSizeMB>
<mergeScheduler class="${solr.tests.mergeScheduler}" />
<writeLockTimeout>1000</writeLockTimeout>
<commitLockTimeout>10000</commitLockTimeout>
<lockType>${solr.tests.lockType:single}</lockType>
<query>
<useColdSearcher>false</useColdSearcher>
<maxWarmingSearchers>1</maxWarmingSearchers>
</query>
</indexConfig>
<requestHandler name="standard"
class="solr.StandardRequestHandler"></requestHandler>