You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@rocketmq.apache.org by aa...@apache.org on 2022/06/23 02:30:55 UTC

[rocketmq-clients] branch master updated: Docs: fix typo

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

aaronai pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/rocketmq-clients.git


The following commit(s) were added to refs/heads/master by this push:
     new b1d8b67  Docs: fix typo
b1d8b67 is described below

commit b1d8b67a564bbfe3dfa374146540c674ff352a05
Author: Aaron Ai <ya...@gmail.com>
AuthorDate: Thu Jun 23 10:30:46 2022 +0800

    Docs: fix typo
---
 docs/message_id.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/message_id.md b/docs/message_id.md
index 37c175c..d5c5f74 100644
--- a/docs/message_id.md
+++ b/docs/message_id.md
@@ -5,8 +5,8 @@ Here is the new design for message identifier.
 ## Background
 In the past, there are two types of implementation of message identifier.
 
-1. Message identifier based on the broker address and the offset in message queue, find in [MessageDecoder#createMessageId](https://github.com/apache/rocketmq/blob/release-4.9.3/common/src/main/java/org/apache/rocketmq/common/message/MessageDecoder.java#L62-L71)
-2. Message identifier based on the client IP and unix timestamp, find in [MessageClientIDSetter#createUniqID](https://github.com/apache/rocketmq/blob/release-4.9.3/common/src/main/java/org/apache/rocketmq/common/message/MessageClientIDSetter.java#L114-131)
+1. Message identifier based on the broker address and the offset in message queue, find in [MessageDecoder#createMessageId](https://github.com/apache/rocketmq/blob/release-4.9.3/common/src/main/java/org/apache/rocketmq/common/message/MessageDecoder.java#L62-L71).
+2. Message identifier based on the client IP and unix timestamp, find in [MessageClientIDSetter#createUniqID](https://github.com/apache/rocketmq/blob/release-4.9.3/common/src/main/java/org/apache/rocketmq/common/message/MessageClientIDSetter.java#L114-L131).
 
 The first type of message identifier is purely based on server-side information, which makes each message stored on the broker absolutely unique. The second message identifier is purely based on client information.