-
Notifications
You must be signed in to change notification settings - Fork 580
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
Messaging - swallowed exception from CS #3892
Comments
Workaround: @Incoming("fromKafka")
@Acknowledgment(Acknowledgment.Strategy.MANUAL)
public SubscriberBuilder<Message<String>, Void> getMessages() {
return ReactiveStreams.<Message<String>>builder()
.map(msg -> {
return CompletableFuture.failedFuture(new RuntimeException());
})
.flatMap(ReactiveStreams::fromCompletionStageNullable)
.onError(t -> LOG.log(Level.SEVERE, "Stream killed by error", t))
.ignore();
} |
danielkec
added a commit
to danielkec/helidon
that referenced
this issue
Feb 22, 2022
Signed-off-by: Daniel Kec <[email protected]>
danielkec
added a commit
that referenced
this issue
Mar 4, 2022
) * Fix badly subscribed connector to processor signature #3904 Signed-off-by: Daniel Kec <[email protected]> * Fix swallowed exception from CS #3892 Signed-off-by: Daniel Kec <[email protected]>
danielkec
added a commit
to danielkec/helidon
that referenced
this issue
Mar 10, 2022
…lidon-io#3911) * Fix badly subscribed connector to processor signature helidon-io#3904 * Fix swallowed exception from CS helidon-io#3892 Signed-off-by: Daniel Kec <[email protected]>
danielkec
added a commit
that referenced
this issue
Mar 18, 2022
) (#3957) * Fix badly subscribed connector to processor signature #3904 * Fix swallowed exception from CS #3892 Signed-off-by: Daniel Kec <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks @santhoshpt for finding the bug, signature
INCOMING_COMPLETION_STAGE_2_MSG
swallows CS exception.The text was updated successfully, but these errors were encountered: