eolivelli commented on a change in pull request #10062:
URL: https://github.com/apache/pulsar/pull/10062#discussion_r602886322



##########
File path: 
pulsar-client-tools/src/main/java/org/apache/pulsar/client/cli/PulsarClientTool.java
##########
@@ -110,14 +111,15 @@ public PulsarClientTool(Properties properties) {
 
         produceCommand = new CmdProduce();
         consumeCommand = new CmdConsume();
+        generateDocument = new CmdGenerateDocument();
 
         this.commandParser = new JCommander();
         this.usageFormatter = new DefaultUsageFormatter(this.commandParser);
-
         commandParser.setProgramName("pulsar-client");
         commandParser.addObject(this);
         commandParser.addCommand("produce", produceCommand);
         commandParser.addCommand("consume", consumeCommand);
+        commandParser.addCommand("document", generateDocument);

Review comment:
       What about 'generate_documentation ' ?




-- 
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.

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to