We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Describe the bug Error handling does not work with blocking event bus consumers: @ConsumeEvent(blocking=true)
@ConsumeEvent(blocking=true)
Expected behavior If the consumer body throws an exception, the sender should get a ReplyException.
ReplyException
Actual behavior The exception thrown by the consumer is reported to the uncaught exception handler.
To Reproduce
In MessageConsumerFailureTest, set all @ConsumeEvent annotations blocking attribute to true and run the test. The test will fail.
MessageConsumerFailureTest
@ConsumeEvent
blocking
true
The text was updated successfully, but these errors were encountered:
Thanks @tsegismont, I will have a look.
Sorry, something went wrong.
cescoffier
Successfully merging a pull request may close this issue.
Describe the bug
Error handling does not work with blocking event bus consumers:
@ConsumeEvent(blocking=true)
Expected behavior
If the consumer body throws an exception, the sender should get a
ReplyException
.Actual behavior
The exception thrown by the consumer is reported to the uncaught exception handler.
To Reproduce
In
MessageConsumerFailureTest
, set all@ConsumeEvent
annotationsblocking
attribute totrue
and run the test.The test will fail.
The text was updated successfully, but these errors were encountered: