This is an automated email from the ASF dual-hosted git repository.

vbalaji pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hudi.git


The following commit(s) were added to refs/heads/master by this push:
     new f4f329e1d19 Fix typo in use of ShellOption (#7963)
f4f329e1d19 is described below

commit f4f329e1d19587129d54cc6c173ae7842065263a
Author: Pramod Biligiri <[email protected]>
AuthorDate: Thu Mar 30 11:07:32 2023 +0530

    Fix typo in use of ShellOption (#7963)
---
 .../src/main/java/org/apache/hudi/cli/commands/CommitsCommand.java  | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git 
a/hudi-cli/src/main/java/org/apache/hudi/cli/commands/CommitsCommand.java 
b/hudi-cli/src/main/java/org/apache/hudi/cli/commands/CommitsCommand.java
index 60f4de5e7ce..c86401d9b3a 100644
--- a/hudi-cli/src/main/java/org/apache/hudi/cli/commands/CommitsCommand.java
+++ b/hudi-cli/src/main/java/org/apache/hudi/cli/commands/CommitsCommand.java
@@ -210,7 +210,7 @@ public class CommitsCommand {
       @ShellOption(value = {"--desc"}, help = "Ordering", defaultValue = 
"false") final boolean descending,
       @ShellOption(value = {"--headeronly"}, help = "Print Header Only",
           defaultValue = "false") final boolean headerOnly,
-      @ShellOption(value = {"includeArchivedTimeline"}, help = "Include 
archived commits as well",
+      @ShellOption(value = {"--includeArchivedTimeline"}, help = "Include 
archived commits as well",
               defaultValue = "false") final boolean includeArchivedTimeline)
       throws Exception {
 
@@ -278,7 +278,7 @@ public class CommitsCommand {
       @ShellOption(value = {"--desc"}, help = "Ordering", defaultValue = 
"false") final boolean descending,
       @ShellOption(value = {"--headeronly"}, help = "Print Header Only",
           defaultValue = "false") final boolean headerOnly,
-      @ShellOption(value = {"includeArchivedTimeline"}, help = "Include 
archived commits as well",
+      @ShellOption(value = {"--includeArchivedTimeline"}, help = "Include 
archived commits as well",
               defaultValue = "false") final boolean includeArchivedTimeline)
       throws Exception {
 
@@ -324,7 +324,7 @@ public class CommitsCommand {
       @ShellOption(value = {"--desc"}, help = "Ordering", defaultValue = 
"false") final boolean descending,
       @ShellOption(value = {"--headeronly"}, help = "Print Header Only",
           defaultValue = "false") final boolean headerOnly,
-      @ShellOption(value = {"includeArchivedTimeline"}, help = "Include 
archived commits as well",
+      @ShellOption(value = {"--includeArchivedTimeline"}, help = "Include 
archived commits as well",
               defaultValue = "false") final boolean includeArchivedTimeline)
       throws Exception {
 

Reply via email to