epugh commented on code in PR #2807:
URL: https://github.com/apache/solr/pull/2807#discussion_r1820668197
##########
solr/core/src/java/org/apache/solr/cli/ExportTool.java:
##########
@@ -116,28 +116,48 @@ public List<Option> getOptions() {
.desc("Name of the collection.")
.build(),
Option.builder("out")
+ .deprecated(
+ DeprecatedAttributes.builder()
+ .setForRemoval(true)
+ .setSince("9.8")
+ .setDescription("Use --output instead")
+ .get())
+ .hasArg()
+ .argName("PATH")
+ .desc(
+ "Path to output the exported data, and optionally the file
name, defaults to 'collection-name'.")
+ .build(),
+ Option.builder()
+ .longOpt("output")
Review Comment:
As far as `-o` goes, shouldn't that be `--verbose`? In some places we use
--verbose to show the actual Solr response... That will remove this
parameter....
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]