lizhimins commented on code in PR #9480:
URL: https://github.com/apache/rocketmq/pull/9480#discussion_r2151222954


##########
common/src/main/java/org/apache/rocketmq/common/topic/TopicValidator.java:
##########
@@ -111,7 +112,9 @@ public static ValidateTopicResult validateTopic(String 
topic) {
             return new ValidateTopicResult(false, "The specified topic 
contains illegal characters, allowing only ^[%|a-zA-Z0-9_-]+$");
         }
 
-        if (topic.length() > TOPIC_MAX_LENGTH) {
+        if (!topic.startsWith(MixAll.RETRY_GROUP_TOPIC_PREFIX) &&
+            !topic.startsWith(MixAll.DLQ_GROUP_TOPIC_PREFIX) &&

Review Comment:
   那么 retry 和 dlq 的限制呢



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

To unsubscribe, e-mail: commits-unsubscr...@rocketmq.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to