mirror of https://github.com/apache/lucene.git
SOLR-5143: tests - avoid too large of a tree for a single block
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1516847 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
43af17b7b4
commit
13789ae20b
|
@ -44,7 +44,6 @@ import org.junit.Ignore;
|
|||
* Super basic testing, no shard restarting or anything.
|
||||
*/
|
||||
@Slow
|
||||
@Ignore // failing on certain jenkins since block join commit - needs investigation.
|
||||
public class FullSolrCloudDistribCmdsTest extends AbstractFullDistribZkTestBase {
|
||||
|
||||
|
||||
|
@ -242,7 +241,7 @@ public class FullSolrCloudDistribCmdsTest extends AbstractFullDistribZkTestBase
|
|||
private long testIndexQueryDeleteHierarchical(long docId) throws Exception {
|
||||
//index
|
||||
int topDocsNum = atLeast(10);
|
||||
int childsNum = atLeast(10);
|
||||
int childsNum = 5+random().nextInt(5);
|
||||
for (int i = 0; i < topDocsNum; ++i) {
|
||||
UpdateRequest uReq = new UpdateRequest();
|
||||
SolrInputDocument topDocument = new SolrInputDocument();
|
||||
|
|
Loading…
Reference in New Issue