-
Notifications
You must be signed in to change notification settings - Fork 693
Propagate async publisher Pub/Sub errors into Stream error channel #2501
Comments
Has this been addressed? In other words, could one add |
This was done for the subscription side (for a Spring Cloud Stream sink), but not for publishing side (for a Spring Cloud Stream source). Which one is your usecase? |
Thanks @elefeint , I've tried this but with a global |
@dinvlad Replacing this line with
In the future, please create a new issue with any relevant information about what you tried and what the expected outcome was -- this makes it easier for developers to find useful threads in the future. |
OK, thanks for clarifying @elefeint - I was under the impression I could get a global "catch all", but looks like that's not how it works. I'm assuming this behavior is not specific to PubSub? |
Right; this is how Spring Cloud Stream works -- here is a relevant SO explanation. |
Per Spring Cloud Stream
errorChannelEnabled
docs,We don't use the
errorChannel
parameter when creating producer message handler at all right now.I've clarified the title that this relates to the Publisher errors.
The text was updated successfully, but these errors were encountered: