You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pulsar.apache.org by ur...@apache.org on 2022/08/31 01:55:01 UTC

[pulsar-site] branch fix-pulsar-admin-doc-gen created (now 0fff87afd4e)

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

urfree pushed a change to branch fix-pulsar-admin-doc-gen
in repository https://gitbox.apache.org/repos/asf/pulsar-site.git


      at 0fff87afd4e fix build fail due to pulsar-admin cli wrong

This branch includes the following new commits:

     new 0fff87afd4e fix build fail due to pulsar-admin cli wrong

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[pulsar-site] 01/01: fix build fail due to pulsar-admin cli wrong

Posted by ur...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

urfree pushed a commit to branch fix-pulsar-admin-doc-gen
in repository https://gitbox.apache.org/repos/asf/pulsar-site.git

commit 0fff87afd4ea3ee97ea9c69e103f99d6642d2473
Author: Li Li <ur...@apache.org>
AuthorDate: Wed Aug 31 09:54:48 2022 +0800

    fix build fail due to pulsar-admin cli wrong
    
    Signed-off-by: Li Li <ur...@apache.org>
---
 site2/tools/pulsar-admin-doc-gen.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/site2/tools/pulsar-admin-doc-gen.sh b/site2/tools/pulsar-admin-doc-gen.sh
index f7c206aaeea..8874c5fb8bb 100755
--- a/site2/tools/pulsar-admin-doc-gen.sh
+++ b/site2/tools/pulsar-admin-doc-gen.sh
@@ -28,5 +28,5 @@ COMMANDS="broker-stats brokers bookies clusters functions functions-worker names
 
 for CMD in $COMMANDS
 do
-    $DOC_GEN $CMD > $DOCS_DIR/$CMD.md
+    $DOC_GEN generate $CMD > $DOCS_DIR/$CMD.md
 done