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 2023/07/08 21:49:33 UTC

[solr] branch main updated: missing required parameter on the builder (#1767)

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

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


The following commit(s) were added to refs/heads/main by this push:
     new 4336add0daf missing required parameter on the builder (#1767)
4336add0daf is described below

commit 4336add0daf15d9621ac6bda36f0881effe2fa7d
Author: Eric Pugh <ep...@opensourceconnections.com>
AuthorDate: Sat Jul 8 17:49:28 2023 -0400

    missing required parameter on the builder (#1767)
---
 solr/core/src/java/org/apache/solr/cli/HealthcheckTool.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/solr/core/src/java/org/apache/solr/cli/HealthcheckTool.java b/solr/core/src/java/org/apache/solr/cli/HealthcheckTool.java
index 44e4ea757b2..e0e5cafd0f8 100644
--- a/solr/core/src/java/org/apache/solr/cli/HealthcheckTool.java
+++ b/solr/core/src/java/org/apache/solr/cli/HealthcheckTool.java
@@ -63,7 +63,7 @@ public class HealthcheckTool extends ToolBase {
             .longOpt("name")
             .argName("NAME")
             .hasArg()
-            .required(false)
+            .required(true)
             .desc("Name of the collection to check.")
             .build());
   }