You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@rocketmq.apache.org by li...@apache.org on 2022/05/31 03:50:52 UTC

[rocketmq-apis] branch v2 updated: Fix grammar issue and import

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

lizhanhui pushed a commit to branch v2
in repository https://gitbox.apache.org/repos/asf/rocketmq-apis.git


The following commit(s) were added to refs/heads/v2 by this push:
     new 4ecf5e6  Fix grammar issue and import
4ecf5e6 is described below

commit 4ecf5e6a91f64d6550c4ad976ac4f99212f8c786
Author: Li Zhanhui <li...@gmail.com>
AuthorDate: Tue May 31 11:50:44 2022 +0800

    Fix grammar issue and import
---
 apache/rocketmq/v2/service.proto | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/apache/rocketmq/v2/service.proto b/apache/rocketmq/v2/service.proto
index 71ed31f..c7ce2e9 100644
--- a/apache/rocketmq/v2/service.proto
+++ b/apache/rocketmq/v2/service.proto
@@ -16,6 +16,7 @@
 syntax = "proto3";
 
 import "google/protobuf/duration.proto";
+import "google/protobuf/timestamp.proto";
 
 import "apache/rocketmq/v2/definition.proto";
 
@@ -101,7 +102,7 @@ message ReceiveMessageResponse {
   oneof content {
     Status status = 1;
     Message message = 2;
-    // Timestamp that prepare to deliver status and all messages.
+    // The timestamp that brokers start to deliver status line or message.
     google.protobuf.Timestamp delivery_timestamp = 3;
   }
 }