You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@solr.apache.org by ep...@apache.org on 2024/02/20 20:00:10 UTC

(solr) branch branch_9x updated: Bring branch_9x version of setupCluster in line with main branch version to faciliate backports

This is an automated email from the ASF dual-hosted git repository.

epugh pushed a commit to branch branch_9x
in repository https://gitbox.apache.org/repos/asf/solr.git


The following commit(s) were added to refs/heads/branch_9x by this push:
     new ad5c9cd7f4a Bring branch_9x version of setupCluster in line with main branch version to faciliate backports
ad5c9cd7f4a is described below

commit ad5c9cd7f4a46fb8ed57d3f7ea6f1a8a0d6e1d1f
Author: Eric Pugh <ep...@opensourceconnections.com>
AuthorDate: Tue Feb 20 14:59:59 2024 -0500

    Bring branch_9x version of setupCluster in line with main branch version to faciliate backports
---
 solr/core/src/test/org/apache/solr/cli/PostToolTest.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/solr/core/src/test/org/apache/solr/cli/PostToolTest.java b/solr/core/src/test/org/apache/solr/cli/PostToolTest.java
index e11c11884f1..3912067d0d8 100644
--- a/solr/core/src/test/org/apache/solr/cli/PostToolTest.java
+++ b/solr/core/src/test/org/apache/solr/cli/PostToolTest.java
@@ -55,9 +55,9 @@ public class PostToolTest extends SolrCloudTestCase {
 
   @BeforeClass
   public static void setupCluster() throws Exception {
-    configureCluster(1)
+    configureCluster(2)
         .addConfig(
-            "config", TEST_PATH().resolve("configsets").resolve("cloud-minimal").resolve("conf"))
+            "conf1", configset("cloud-minimal"))
         .configure();
   }