Skip to content

Commit

Permalink
allow negating sort by id
Browse files Browse the repository at this point in the history
  • Loading branch information
mdavis95 committed May 1, 2022
1 parent 9b4ad72 commit 1589c13
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public class ZuliaDump implements Callable<Integer> {
@CommandLine.Option(names = { "-a", "--includeAssociatedDocs"}, description = "Include Associated Documents in the dump (default: ${DEFAULT-VALUE})")
private boolean includeAssociatedDocs = false;

@CommandLine.Option(names = { "-s", "--sortById"}, description = "Sort results by Id (Needed for an index that is being indexed) (default: ${DEFAULT-VALUE})")
@CommandLine.Option(negatable = true, names = { "-s", "--sortById"}, description = "Sort results by Id (Needed for an index that is being indexed) (default: ${DEFAULT-VALUE})")
private boolean sortById = true;

@CommandLine.Option(names = { "-d", "--idField"}, description = "Id Field Name (default: ${DEFAULT-VALUE})")
Expand Down

0 comments on commit 1589c13

Please sign in to comment.