Skip to content

Commit cdb7453

Browse files
committed
Merge pull request ReactiveX#3535 from zsxwing/pr3528-follow-up
1.x: Don't swallow fatal errors in OperatorZipIterable
2 parents 197d104 + ce889d6 commit cdb7453

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/main/java/rx/internal/operators/OperatorZipIterable.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ public void onCompleted() {
5959
@Override
6060
public void onError(Throwable e) {
6161
if (done) {
62+
Exceptions.throwIfFatal(e);
6263
return;
6364
}
6465
done = true;

0 commit comments

Comments
 (0)