You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@rocketmq.apache.org by ji...@apache.org on 2023/01/17 02:55:02 UTC

[rocketmq-site] branch new-official-website updated: Polish the quick start document (#440)

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

jinrongtong pushed a commit to branch new-official-website
in repository https://gitbox.apache.org/repos/asf/rocketmq-site.git


The following commit(s) were added to refs/heads/new-official-website by this push:
     new 9d2b4ebb2 Polish the quick start document (#440)
9d2b4ebb2 is described below

commit 9d2b4ebb28482429f418fd2c015281417d888397
Author: rongtong <ji...@163.com>
AuthorDate: Tue Jan 17 10:54:58 2023 +0800

    Polish the quick start document (#440)
---
 .../version-5.0/02-quickStart/02quickstart.md                         | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/i18n/en/docusaurus-plugin-content-docs/version-5.0/02-quickStart/02quickstart.md b/i18n/en/docusaurus-plugin-content-docs/version-5.0/02-quickStart/02quickstart.md
index 07cd2598c..f38e1fc23 100644
--- a/i18n/en/docusaurus-plugin-content-docs/version-5.0/02-quickStart/02quickstart.md
+++ b/i18n/en/docusaurus-plugin-content-docs/version-5.0/02-quickStart/02quickstart.md
@@ -24,7 +24,7 @@ Extract the source package of RocketMQ 5.0.0, then compile and build the binary
 ```shell
 $ unzip rocketmq-all-5.0.0-source-release.zip
 $ cd rocketmq-all-5.0.0-source-release/
-$ mvn -Prelease-all -DskipTests clean install -U
+$ mvn -Prelease-all -DskipTests -Dspotbugs.skip=true clean install -U
 $ cd distribution/target/rocketmq-5.0.0/rocketmq-5.0.0
 ```
 ## 2. Start NameServer
@@ -103,7 +103,7 @@ We can also try to use the client sdk to send and receive messages, you can see
 3. Create topic by mqadmin cli tools.
 
    ```shell
-   $ sh bin/mqadmin updatetopic -n localhost:9876 -t TestTopic
+   $ sh bin/mqadmin updatetopic -n localhost:9876 -t TestTopic -c DefaultCluster
    ```
 
 4. In the Java project you have created, create a program that sends messages and run it with the following code: