Skip to content

Commit

Permalink
Merge pull request #3535 from zsxwing/pr3528-follow-up
Browse files Browse the repository at this point in the history
1.x: Don't swallow fatal errors in OperatorZipIterable
  • Loading branch information
akarnokd committed Nov 22, 2015
2 parents 197d104 + ce889d6 commit cdb7453
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ public void onCompleted() {
@Override
public void onError(Throwable e) {
if (done) {
Exceptions.throwIfFatal(e);
return;
}
done = true;
Expand Down

0 comments on commit cdb7453

Please sign in to comment.