You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If the writeFunction in ChannelSendOperator fails immediately inside the call to apply, the error signal should be propagated to the write completion Subscriber. Not doing so means the error is lost and the write appears to never complete.
This is unlikely to occur in WebFlux unless one of the Supplier based commit action fails, but is more likely to happen in RSocket processing where the write function invokes a return value handler (and is how it was uncovered).
The text was updated successfully, but these errors were encountered:
If the writeFunction in
ChannelSendOperator
fails immediately inside the call toapply
, the error signal should be propagated to the write completion Subscriber. Not doing so means the error is lost and the write appears to never complete.This is unlikely to occur in WebFlux unless one of the
Supplier
based commit action fails, but is more likely to happen in RSocket processing where the write function invokes a return value handler (and is how it was uncovered).The text was updated successfully, but these errors were encountered: