Skip to content

Commit ce889d6

Browse files
committed
Don't swallow fatal errors in OperatorZipIterable
1 parent 197d104 commit ce889d6

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)