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
There is a PublishProcessor which calls .doOnSubscribe(checkCondition) operator to perform certain check. checkCondition is intended to throw UnsupportedOperationException, which then has to be propagated to the subscriber down the stream to onError() method. Instead, UndeliverableException is being thrown and process crashes.
There is a PublishProcessor which calls .doOnSubscribe(checkCondition) operator to perform certain check. checkCondition is intended to throw UnsupportedOperationException, which then has to be propagated to the subscriber down the stream to onError() method. Instead, UndeliverableException is being thrown and process crashes.
P.S. This is a cross-post from stackoverflow. According to the @akarnokd, this is issue of RxJava2's
doOnSubscribe()
.The text was updated successfully, but these errors were encountered: