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 1f7764c  remove status in ThreadStackTrace and VerifyMessageResult 
(#35)
1f7764c is described below

commit 1f7764cd22e4be6147df46aa57349840b915d04a
Author: lk <[email protected]>
AuthorDate: Tue May 17 14:44:43 2022 +0800

    remove status in ThreadStackTrace and VerifyMessageResult (#35)
---
 apache/rocketmq/v2/service.proto | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/apache/rocketmq/v2/service.proto b/apache/rocketmq/v2/service.proto
index 27508ee..06d6fac 100644
--- a/apache/rocketmq/v2/service.proto
+++ b/apache/rocketmq/v2/service.proto
@@ -157,8 +157,7 @@ message PrintThreadStackTraceCommand { string nonce = 1; }
 
 message ThreadStackTrace {
   string nonce = 1;
-  Status status = 2;
-  optional string thread_stack_trace = 3;
+  optional string thread_stack_trace = 2;
 }
 
 message VerifyMessageCommand {
@@ -168,7 +167,6 @@ message VerifyMessageCommand {
 
 message VerifyMessageResult {
   string nonce = 1;
-  Status status = 2;
 }
 
 message RecoverOrphanedTransactionCommand {
@@ -257,7 +255,7 @@ message Settings {
 }
 
 message TelemetryCommand {
-  Status status = 1;
+  optional Status status = 1;
 
   oneof command {
     // Client settings

Reply via email to