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/07/12 07:03:28 UTC

[rocketmq-apis] branch main updated: Remove RecoverOrphanedTransactionCommand#message_queue (#57)

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

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


The following commit(s) were added to refs/heads/main by this push:
     new 4911c90  Remove RecoverOrphanedTransactionCommand#message_queue (#57)
4911c90 is described below

commit 4911c90325c0d0f567595c871c6de3ccc986304c
Author: Aaron Ai <ya...@alibaba-inc.com>
AuthorDate: Tue Jul 12 15:03:23 2022 +0800

    Remove RecoverOrphanedTransactionCommand#message_queue (#57)
---
 apache/rocketmq/v2/service.proto | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

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