OnErrorFailedException fix#3455
OnErrorFailedException fix#3455akarnokd merged 1 commit intoReactiveX:1.xfrom konmik:on-error-failed-exception-fix
Conversation
There was a problem hiding this comment.
I guess by preventing the unwrapping, the error keeps propagating up, therefore, this change is essential. However, there could be code out there that depended on the original behavior (since Exceptions is part of the public API).
There was a problem hiding this comment.
I don't think that there is such code. Such unwrapped exceptions were swallowed most of the time anyway.
There was a problem hiding this comment.
Interesting bug. I agree that removing the unwrapping is needed.
|
Looks good to me. 👍 |
|
Could you also fix the similar issues in |
|
I would replace error handling in both of these methods with simple However, I think that the problem should be handled more generally. |
|
Thanks for digging in to help with this. I thought we had squashed all of these swallowing of errors! Apparently not :-( |
|
👍 Go ahead with this @akarnokd if you're still good with it. |
|
It is good as it is. Merging. The thing @zsxwing asked for can be done in a separate PR. |
#2998