Skip to content

Commit

Permalink
MINOR: Fix help message for kafka-metadata-shell (apache#13867)
Browse files Browse the repository at this point in the history
Reviewers: Ziming Deng [email protected]
  • Loading branch information
tkuramoto33 authored Sep 11, 2023
1 parent 7fc6500 commit 37c01e9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions shell/src/main/java/org/apache/kafka/shell/MetadataShell.java
Original file line number Diff line number Diff line change
Expand Up @@ -177,9 +177,9 @@ public void close() throws Exception {

public static void main(String[] args) throws Exception {
ArgumentParser parser = ArgumentParsers
.newArgumentParser("metadata-tool")
.newArgumentParser("kafka-metadata-shell")
.defaultHelp(true)
.description("The Apache Kafka metadata tool");
.description("The Apache Kafka metadata shell");
parser.addArgument("--snapshot", "-s")
.type(String.class)
.help("The snapshot file to read.");
Expand Down

0 comments on commit 37c01e9

Please sign in to comment.