Fix: RabbitMQ Consumer could not receive handleCancelOk callback(#13334) (#759)

Signed-off-by: ayue <ericyu0421@163.com>
This commit is contained in:
ayue 2025-06-21 12:20:28 +08:00 committed by GitHub
parent 6c74815fdf
commit 7f9287fcb1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 1 deletions

View File

@ -13,6 +13,7 @@ Release Notes.
initialized.
* Fix retransform failure when enhancing both parent and child classes.
* Add support for `dameng(DM)` JDBC url format in `URLParser`.
* Fix RabbitMQ Consumer could not receive handleCancelOk callback.
All issues and pull requests are [here](https://github.com/apache/skywalking/milestone/236?closed=1)

View File

@ -50,7 +50,7 @@ public class TracerConsumer implements Consumer {
@Override
public void handleCancelOk(final String consumerTag) {
this.delegate.handleRecoverOk(consumerTag);
this.delegate.handleCancelOk(consumerTag);
}
@Override