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
@@ -147,10 +149,12 @@ public static void main(String[] args) {
147
149
Option.builder("s")
148
150
.longOpt("solr-url")
149
151
.hasArg()
150
-
.argName("BASE_URL")
152
+
.argName("HOST")
151
153
.type(String.class)
152
154
.desc(
153
-
"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'.")
155
+
"Specify the Solr base URL when connecting to Solr in standalone mode. If omitted both the -s parameter and the -z parameter, connect to "
156
+
+ DEFAULT_BASE_URL
157
+
+ ".")
154
158
.build();
155
159
mainOptions.addOption(solrUrlOption);
156
160
@@ -243,7 +247,9 @@ public static void main(String[] args) {
243
247
.argName("ZK_HOST")
244
248
.type(String.class)
245
249
.desc(
246
-
"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'.")
250
+
"Specify the ZooKeeper connection string when connecting to Solr in SolrCloud mode. If omitted both the -s parameter and the -z parameter, connect to "
251
+
+ DEFAULT_BASE_URL
252
+
+ ".")
247
253
.build();
248
254
mainOptions.addOption(zkHostOption);
249
255
@@ -261,24 +267,27 @@ public static void main(String[] args) {
0 commit comments