You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -145,10 +146,12 @@ public static void main(String[] args) {
145
146
Option.builder("s")
146
147
.longOpt("solr-url")
147
148
.hasArg()
148
-
.argName("BASE_URL")
149
+
.argName("HOST")
149
150
.type(String.class)
150
151
.desc(
151
-
"Specify the Solr base URL when connecting to Solr in standalone mode. If omitted both the -b parameter and the -z parameter, connect to http://localhost:8983/solr. For example 'http://localhost:8983/solr'.")
152
+
"Specify the Solr base URL when connecting to Solr in standalone mode. If omitted both the -s parameter and the -z parameter, connect to "
153
+
+ DEFAULT_BASE_URL
154
+
+ ".")
152
155
.build();
153
156
mainOptions.addOption(solrUrlOption);
154
157
@@ -241,7 +244,9 @@ public static void main(String[] args) {
241
244
.argName("ZK_HOST")
242
245
.type(String.class)
243
246
.desc(
244
-
"Specify the ZooKeeper connection string when connecting to Solr in SolrCloud mode. If omitted both the -b parameter and the -z parameter, connect to http://localhost:8983/solr. For example 'localhost:2181/solr'.")
247
+
"Specify the ZooKeeper connection string when connecting to Solr in SolrCloud mode. If omitted both the -s parameter and the -z parameter, connect to "
248
+
+ DEFAULT_BASE_URL
249
+
+ ".")
245
250
.build();
246
251
mainOptions.addOption(zkHostOption);
247
252
@@ -259,24 +264,27 @@ public static void main(String[] args) {
0 commit comments