skywalking-java icon indicating copy to clipboard operation
skywalking-java copied to clipboard

[plugin][pulsar] Handle the SendCallback method sign changed.

Open dao-jun opened this issue 6 months ago • 2 comments

In https://github.com/apache/pulsar/pull/22940, Pulsar will change the org.apache.pulsar.client.impl.SendCallback#sendComplete method sign from

public void sendComplete(Exception e)

to

public void sendComplete(Throwable t, OpSendMsgStats stats)

This PR is to address it.

dao-jun avatar Aug 19 '24 23:08 dao-jun