Skip to content

Commit 7d65291

Browse files
authored
2.x: Make Flowable.fromCallable consitent with the other fromCallables (#6158)
2.x: Make Flowable.fromCallable consistent with the other fromCallables
1 parent 835ab00 commit 7d65291

File tree

2 files changed

+34
-2
lines changed

2 files changed

+34
-2
lines changed

src/main/java/io/reactivex/internal/operators/flowable/FlowableFromCallable.java

+6-1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
import io.reactivex.exceptions.Exceptions;
2222
import io.reactivex.internal.functions.ObjectHelper;
2323
import io.reactivex.internal.subscriptions.DeferredScalarSubscription;
24+
import io.reactivex.plugins.RxJavaPlugins;
2425

2526
public final class FlowableFromCallable<T> extends Flowable<T> implements Callable<T> {
2627
final Callable<? extends T> callable;
@@ -38,7 +39,11 @@ public void subscribeActual(Subscriber<? super T> s) {
3839
t = ObjectHelper.requireNonNull(callable.call(), "The callable returned a null value");
3940
} catch (Throwable ex) {
4041
Exceptions.throwIfFatal(ex);
41-
s.onError(ex);
42+
if (deferred.isCancelled()) {
43+
RxJavaPlugins.onError(ex);
44+
} else {
45+
s.onError(ex);
46+
}
4247
return;
4348
}
4449

src/test/java/io/reactivex/internal/operators/flowable/FlowableFromCallableTest.java

+28-1
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,11 @@
1616

1717
package io.reactivex.internal.operators.flowable;
1818

19+
import static org.junit.Assert.assertEquals;
20+
import static org.mockito.ArgumentMatchers.any;
1921
import static org.mockito.Mockito.*;
20-
import static org.junit.Assert.*;
2122

23+
import java.util.List;
2224
import java.util.concurrent.*;
2325

2426
import org.junit.Test;
@@ -27,7 +29,9 @@
2729
import org.reactivestreams.*;
2830

2931
import io.reactivex.*;
32+
import io.reactivex.exceptions.TestException;
3033
import io.reactivex.functions.Function;
34+
import io.reactivex.plugins.RxJavaPlugins;
3135
import io.reactivex.schedulers.Schedulers;
3236
import io.reactivex.subscribers.TestSubscriber;
3337

@@ -238,4 +242,27 @@ public Object call() throws Exception {
238242
.test()
239243
.assertFailure(NullPointerException.class);
240244
}
245+
246+
@Test(timeout = 5000)
247+
public void undeliverableUponCancellation() throws Exception {
248+
List<Throwable> errors = TestHelper.trackPluginErrors();
249+
try {
250+
final TestSubscriber<Integer> ts = new TestSubscriber<Integer>();
251+
252+
Flowable.fromCallable(new Callable<Integer>() {
253+
@Override
254+
public Integer call() throws Exception {
255+
ts.cancel();
256+
throw new TestException();
257+
}
258+
})
259+
.subscribe(ts);
260+
261+
ts.assertEmpty();
262+
263+
TestHelper.assertUndeliverable(errors, 0, TestException.class);
264+
} finally {
265+
RxJavaPlugins.reset();
266+
}
267+
}
241268
}

0 commit comments

Comments
 (0)