Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,11 @@ public MultiThreadedOCPTest() {
fixShardCount(3);
}

@Override
protected boolean reuseServersAcrossTests() {
return true;
}

@Test
public void testFillWorkQueue() throws Exception {
try (SolrClient client = createNewSolrClient("", getBaseUrl(jettys.get(0)))) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,11 @@ public SimpleCollectionCreateDeleteTest() {
sliceCount = 1;
}

@Override
protected boolean reuseServersAcrossTests() {
return true;
}

@Test
@ShardsFixed(num = 1)
public void testCreateAndDeleteThenCreateAgain() throws Exception {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,11 @@ public LukeRequestHandlerDistribTest() {
fixShardCount(2);
}

@Override
protected boolean reuseServersAcrossTests() {
return true;
}

private LukeResponse requestLuke() throws Exception {
return requestLuke(new ModifiableSolrParams());
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,11 @@ public CombinedQueryComponentTest() {
fixShardCount(1);
}

@Override
protected boolean reuseServersAcrossTests() {
return true;
}

/**
* Sets up the test class by initializing the core and setting system properties. This method is
* executed before all test methods in the class.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,11 @@ public CombinedQuerySolrCloudTest() {
configString = "solrconfig-combined-query.xml";
}

@Override
protected boolean reuseServersAcrossTests() {
return true;
}

@Override
protected String getCloudSchemaFile() {
return "schema-vector-catchall.xml";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,11 @@
*/
public class DistributedCombinedQueryComponentTest extends BaseDistributedSearchTestCase {

@Override
protected boolean reuseServersAcrossTests() {
return true;
}

private static final int NUM_DOCS = 10;
private static final String vectorField = "vector";

Expand Down
Loading
Loading