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
Hi and thanks for reporting. This is a bug in switchMap not playing nice with fromIterable. You can work around by applying .hide() to fromIterable. I'll post a fix shortly.
This issue was reproduces on RX-Java v2.2.6 and v3.0.0-RC1
I have this piece of code:
When run it prints:
value1: 1
value2: 10
value1: 2
value2: 20
complete
Then I have the exact same thing but with Flowable.fromIterable:
This one prints:
value1: 1
value2: 10
And then nothing, no complete, no error, nothing.
The text was updated successfully, but these errors were encountered: