AYue-94 opened a new issue, #13334: URL: https://github.com/apache/skywalking/issues/13334
### Search before asking - [x] I had searched in the [issues](https://github.com/apache/skywalking/issues?q=is%3Aissue) and found no similar issues. ### Apache SkyWalking Component Java Agent (apache/skywalking-java) ### What happened 1. skywalking-java 9.4.0 2. use rabbitmq consumer consumer could not receive handleCancelOk callback. ```java public class MyConsumer implements Consumer { // ... @Override public void handleCancelOk(final String consumerTag) { System.out.println("handleCancelOk"); } } ``` ### What you expected to happen when use skywalking-java agent, rabbitmq consumer could receive handleCancelOk callback. ### How to reproduce ```java public class MyConsumer implements Consumer { // ... @Override public void handleCancelOk(final String consumerTag) { System.out.println("handleCancelOk"); } } ``` ### Anything else TracerConsumer call wrong method, i will try to fix it. ```java public class TracerConsumer implements Consumer { // ... @Override public void handleCancelOk(final String consumerTag) { this.delegate.handleRecoverOk(consumerTag); // call wrong method } ``` ### Are you willing to submit a pull request to fix on your own? - [x] Yes I am willing to submit a pull request on my own! ### Code of Conduct - [x] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct) -- 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: notifications-unsubscr...@skywalking.apache.org.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org