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/05 05:09:32 UTC

[rocketmq-apis] branch v2 updated: Add message queue in RecoverOrphanedTransactionCommand (#29)

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 94c866c  Add message queue in RecoverOrphanedTransactionCommand (#29)
94c866c is described below

commit 94c866c5edaaa71642bba05daeb2d50101a6352f
Author: Aaron Ai <ya...@alibaba-inc.com>
AuthorDate: Thu May 5 13:09:29 2022 +0800

    Add message queue in RecoverOrphanedTransactionCommand (#29)
---
 apache/rocketmq/v2/service.proto | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/apache/rocketmq/v2/service.proto b/apache/rocketmq/v2/service.proto
index e9fb514..c6717ec 100644
--- a/apache/rocketmq/v2/service.proto
+++ b/apache/rocketmq/v2/service.proto
@@ -180,8 +180,9 @@ message VerifyMessageResult {
 }
 
 message RecoverOrphanedTransactionCommand {
-  Message orphaned_transactional_message = 1;
-  string transaction_id = 2;
+  MessageQueue message_queue = 1;
+  Message orphaned_transactional_message = 2;
+  string transaction_id = 3;
 }
 
 message Publishing {