From 2ad6de184c9c3a1b4156d963bbe651f7e1f52536 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20H=C3=B8ydahl?= Date: Thu, 27 Oct 2016 23:41:43 +0200 Subject: [PATCH] SOLR-9610: Fix typo in usage for assertTool timeout option. use --timeout instead of --ms (cherry picked from commit fa4e599) --- solr/core/src/java/org/apache/solr/util/SolrCLI.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/solr/core/src/java/org/apache/solr/util/SolrCLI.java b/solr/core/src/java/org/apache/solr/util/SolrCLI.java index a0f44d56b57..2c2898d0aa8 100644 --- a/solr/core/src/java/org/apache/solr/util/SolrCLI.java +++ b/solr/core/src/java/org/apache/solr/util/SolrCLI.java @@ -3263,7 +3263,7 @@ public class SolrCLI { .create("m"), OptionBuilder .withDescription("Timeout in ms for commands supporting a timeout") - .withLongOpt("ms") + .withLongOpt("timeout") .hasArg(true) .withType(Long.class) .withArgName("ms")