yaojingguo opened a new pull request #6480:
URL: https://github.com/apache/skywalking/pull/6480
For the details on how this PR works, refer to #6456.
I have checked the following Kafka usages:
- `KafkaProducer.send(record)`
- `KafkaProducer.send(record, callback)`
- `KafkaTemplate.send(topic, data)`
- `KafkaTemplate.execute(callback)` such as
```java
kafkaTemplate.execute(
(Producer<String, String> producer) -> {
producer.send(
new ProducerRecord<>(topic, data),
(RecordMetadata metadata, Exception e) -> {
// ...
});
return 0;
});
```
In all the above usages, `objInst.getSkyWalkingDynamicField()` is `null`.
@zifeihan
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]