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
Thanks for reporting and sharing code to reproduce the issue. The bug is in singleOrError triggered by a conversion back to toFlowable. Fix posted in #5904.
The following code demonstrates the expected behavior of Flowable.singleOrError() (as I understand it):
However, if singleOrError() is immediately followed by Single.flatMapPublisher(...), the exception is lost:
Strangely, if anything is done between Flowable.singleOrError() and Single.flatMapPublisher(...), the exception is thrown as expected:
This is with RxJava 2.1.10 and Reactive Streams 1.0.2.
The text was updated successfully, but these errors were encountered: