wu-sheng commented on code in PR #657:
URL: https://github.com/apache/skywalking-java/pull/657#discussion_r1423335800
##########
test/plugin/scenarios/pulsar-scenario/config/expectedData.yaml:
##########
@@ -97,6 +99,7 @@ segmentItems:
- { key: transmission.latency, value: not blank }
- { key: mq.broker, value: not blank }
- { key: mq.topic, value: test }
+ - { key: mq.body, value: "1" }
Review Comment:
This is how the message is built,
```java
producer.newMessage().key("testKey").value(Integer.toString(1).getBytes()).property("TEST",
"TEST").send();
```
But you only set `1` as body? Could you explain?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]