-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
RabbitMQ Transport Reject Function Call Error #1608
Comments
上引用或截图我看看 |
\CAP\src\DotNetCore.CAP.RabbitMQ\RabbitMQConsumerClient.cs |
你这是最新代码么 |
是 我刚有查了一下您现在的main 分支 也是这种代码
|
yang-xiaodong
changed the title
RabbitMQConsumerClient Reject 方法有误
RabbitMQ Transport Reject Function Call Error
Nov 5, 2024
确认Bug,由8.2.0版本引入,感谢你的报告! |
yang-xiaodong
added a commit
that referenced
this issue
Nov 5, 2024
Fixed in version 8.3.1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
public void Reject(object? sender)
{
_consumer!.BasicAck((ulong)sender!);
}
should be
public void Reject(object? sender)
{
_consumer!.BasicReject((ulong)sender!);
}
The text was updated successfully, but these errors were encountered: