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/02/12 08:04:46 UTC

[rocketmq] branch develop updated: [ISSUE #5979] Fix FAQ url incorrect in FAQUrl class (#6035)

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

jinrongtong pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/rocketmq.git


The following commit(s) were added to refs/heads/develop by this push:
     new 65737a0d0 [ISSUE #5979] Fix FAQ url incorrect in FAQUrl class (#6035)
65737a0d0 is described below

commit 65737a0d0eacdd34cb3c1db23de88210503e7987
Author: mxsm <lj...@gmail.com>
AuthorDate: Sun Feb 12 16:04:38 2023 +0800

    [ISSUE #5979] Fix FAQ url incorrect in FAQUrl class (#6035)
---
 .../org/apache/rocketmq/common/help/FAQUrl.java    | 39 ++++++++--------------
 1 file changed, 13 insertions(+), 26 deletions(-)

diff --git a/common/src/main/java/org/apache/rocketmq/common/help/FAQUrl.java b/common/src/main/java/org/apache/rocketmq/common/help/FAQUrl.java
index cec9fce79..4a6588e41 100644
--- a/common/src/main/java/org/apache/rocketmq/common/help/FAQUrl.java
+++ b/common/src/main/java/org/apache/rocketmq/common/help/FAQUrl.java
@@ -18,45 +18,32 @@ package org.apache.rocketmq.common.help;
 
 public class FAQUrl {
 
-    public static final String APPLY_TOPIC_URL =
-        "https://rocketmq.apache.org/docs/bestPractice/22FAQ";
+    public static final String APPLY_TOPIC_URL = "https://rocketmq.apache.org/docs/bestPractice/06FAQ";
 
-    public static final String NAME_SERVER_ADDR_NOT_EXIST_URL =
-        "https://rocketmq.apache.org/docs/bestPractice/22FAQ";
+    public static final String NAME_SERVER_ADDR_NOT_EXIST_URL = "https://rocketmq.apache.org/docs/bestPractice/06FAQ";
 
-    public static final String GROUP_NAME_DUPLICATE_URL =
-        "https://rocketmq.apache.org/docs/bestPractice/22FAQ";
+    public static final String GROUP_NAME_DUPLICATE_URL = "https://rocketmq.apache.org/docs/bestPractice/06FAQ";
 
-    public static final String CLIENT_PARAMETER_CHECK_URL =
-        "https://rocketmq.apache.org/docs/bestPractice/22FAQ";
+    public static final String CLIENT_PARAMETER_CHECK_URL = "https://rocketmq.apache.org/docs/bestPractice/06FAQ";
 
-    public static final String SUBSCRIPTION_GROUP_NOT_EXIST =
-        "https://rocketmq.apache.org/docs/bestPractice/22FAQ";
+    public static final String SUBSCRIPTION_GROUP_NOT_EXIST = "https://rocketmq.apache.org/docs/bestPractice/06FAQ";
 
-    public static final String CLIENT_SERVICE_NOT_OK =
-        "https://rocketmq.apache.org/docs/bestPractice/22FAQ";
+    public static final String CLIENT_SERVICE_NOT_OK = "https://rocketmq.apache.org/docs/bestPractice/06FAQ";
 
     // FAQ: No route info of this topic, TopicABC
-    public static final String NO_TOPIC_ROUTE_INFO =
-        "https://rocketmq.apache.org/docs/bestPractice/22FAQ";
+    public static final String NO_TOPIC_ROUTE_INFO = "https://rocketmq.apache.org/docs/bestPractice/06FAQ";
 
-    public static final String LOAD_JSON_EXCEPTION =
-        "https://rocketmq.apache.org/docs/bestPractice/22FAQ";
+    public static final String LOAD_JSON_EXCEPTION = "https://rocketmq.apache.org/docs/bestPractice/06FAQ";
 
-    public static final String SAME_GROUP_DIFFERENT_TOPIC =
-        "https://rocketmq.apache.org/docs/bestPractice/22FAQ";
+    public static final String SAME_GROUP_DIFFERENT_TOPIC = "https://rocketmq.apache.org/docs/bestPractice/06FAQ";
 
-    public static final String MQLIST_NOT_EXIST =
-        "https://rocketmq.apache.org/docs/bestPractice/22FAQ";
+    public static final String MQLIST_NOT_EXIST = "https://rocketmq.apache.org/docs/bestPractice/06FAQ";
 
-    public static final String UNEXPECTED_EXCEPTION_URL =
-        "https://rocketmq.apache.org/docs/bestPractice/22FAQ";
+    public static final String UNEXPECTED_EXCEPTION_URL = "https://rocketmq.apache.org/docs/bestPractice/06FAQ";
 
-    public static final String SEND_MSG_FAILED =
-        "https://rocketmq.apache.org/docs/bestPractice/22FAQ";
+    public static final String SEND_MSG_FAILED = "https://rocketmq.apache.org/docs/bestPractice/06FAQ";
 
-    public static final String UNKNOWN_HOST_EXCEPTION =
-        "https://rocketmq.apache.org/docs/bestPractice/22FAQ";
+    public static final String UNKNOWN_HOST_EXCEPTION = "https://rocketmq.apache.org/docs/bestPractice/06FAQ";
 
     private static final String TIP_STRING_BEGIN = "\nSee ";
     private static final String TIP_STRING_END = " for further details.";