This is an automated email from the ASF dual-hosted git repository.
lizhanhui pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/rocketmq-clients.git
The following commit(s) were added to refs/heads/master by this push:
new f5f56fc fix const SPAN_ATTRIBUTE_VALUE_MESSAGING_PROTOCOL_VERSION
(#149)
f5f56fc is described below
commit f5f56fce2053f2f2403c81e21805f329366194ed
Author: guyinyou <[email protected]>
AuthorDate: Fri Aug 12 10:47:22 2022 +0800
fix const SPAN_ATTRIBUTE_VALUE_MESSAGING_PROTOCOL_VERSION (#149)
Co-authored-by: guyinyou <[email protected]>
---
cpp/source/base/MixAll.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/cpp/source/base/MixAll.cpp b/cpp/source/base/MixAll.cpp
index 676d048..e9931ec 100644
--- a/cpp/source/base/MixAll.cpp
+++ b/cpp/source/base/MixAll.cpp
@@ -102,7 +102,7 @@ const char* MixAll::SPAN_ATTRIBUTE_KEY_ROCKETMQ_ACCESS_KEY
= "messaging.rocketmq
const char* MixAll::SPAN_ATTRIBUTE_VALUE_ROCKETMQ_MESSAGING_SYSTEM =
"rocketmq";
const char* MixAll::SPAN_ATTRIBUTE_VALUE_DESTINATION_KIND = "topic";
const char* MixAll::SPAN_ATTRIBUTE_VALUE_MESSAGING_PROTOCOL = "RMQ-gRPC";
-const char* MixAll::SPAN_ATTRIBUTE_VALUE_MESSAGING_PROTOCOL_VERSION = "v1";
+const char* MixAll::SPAN_ATTRIBUTE_VALUE_MESSAGING_PROTOCOL_VERSION = "v2";
const char* MixAll::SPAN_ATTRIBUTE_VALUE_ROCKETMQ_NORMAL_MESSAGE = "normal";
const char* MixAll::SPAN_ATTRIBUTE_VALUE_ROCKETMQ_FIFO_MESSAGE = "fifo";