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/04/18 12:31:41 UTC

[rocketmq-apis] branch v2 updated: Support batch ack

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 26e4339  Support batch ack
26e4339 is described below

commit 26e4339240ae516051db28c5defd9a6e2a77eccd
Author: Li Zhanhui <li...@gmail.com>
AuthorDate: Mon Apr 18 12:31:31 2022 +0000

    Support batch ack
---
 apache/rocketmq/v2/service.proto | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/apache/rocketmq/v2/service.proto b/apache/rocketmq/v2/service.proto
index 81d5d4f..ab22b3c 100644
--- a/apache/rocketmq/v2/service.proto
+++ b/apache/rocketmq/v2/service.proto
@@ -95,8 +95,7 @@ message ReceiveMessageResponse {
 message AckMessageRequest {
   Resource group = 1;
   Resource topic = 2;
-  string receipt_handle = 3;
-  string message_id = 4;
+  repeated string receipt_handles = 3;
 }
 
 message AckMessageResponse { Status status = 1; }