horizonzy opened a new issue #2549:
URL: https://github.com/apache/rocketmq/issues/2549


   **FEATURE REQUEST**
   
   1. Please describe the feature you are requesting.
   Some method invoke is useless about 
`MessageDecoder.decodeMessageId(uniqKey)`.
   Such as follow:
   ```
       public MessageExt viewMessage(String topic,
           String uniqKey) throws RemotingException, MQBrokerException, 
InterruptedException, MQClientException {
           try {
               MessageDecoder.decodeMessageId(uniqKey);
               return this.viewMessage(uniqKey);
           } catch (Exception e) {
               // Ignore
           }
           return 
this.defaultMQPullConsumerImpl.queryMessageByUniqKey(withNamespace(topic), 
uniqKey);
       }
   ```
   It can be removed
   
   


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