-
Notifications
You must be signed in to change notification settings - Fork 7.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Zipping a finite and an infinite Observable #539
Conversation
RxJava-pull-requests #467 FAILURE |
@cloudbees-pull-request-builder yes I know, this failure is intended ;-) |
@akarnokd wdyt? |
Sorry about this. See my PR for the fix. |
Zipping a finite and an infinite Observable
hello @samuelgruetter @akarnokd On the reactive programming course on Coursera I think I met this bug. I tried to use zip for that:
It prints what I expected, except the timeout never completes. Does your pull request fix my usecase? This PR has been mentionned in this Coursera forum post: |
Hi @slorber. This PR fixes the bug and your example should terminate correctly.. |
thanks! |
Zipping a finite and an infinite Observable
Here are 4 tests testing that zipping a finite and an infinite Observable results in a finite Observable. The third of them fails...