-
Notifications
You must be signed in to change notification settings - Fork 184
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Single#concat(Publisher) onNext error propagation (#1615)
Motivation: Single#concat(Publisher) doesn't catch exceptions from downstream Subscriber#onNext and relies upon upstream to propagate exceptions. However upstream is a Single and has already terminated by the time the exception is caught so it cannot send a duplicate terminal signal. Modifications: - Single#concat(Publisher) catches exceptions from downstream Subscriber#onNext and propagates an error. Result: Single#concat(Publisher) is more robust with respect to exception handling.
- Loading branch information
1 parent
4f7110b
commit 1ef82dd
Showing
2 changed files
with
19 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters