Skip to content

Commit a6c7e33

Browse files
committed
3.x: Update Flowable.throttleLatest MissingBackpressureException message
1 parent 9d4631b commit a6c7e33

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/main/java/io/reactivex/rxjava3/internal/operators/flowable/FlowableThrottleLatest.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -306,8 +306,7 @@ void drain() {
306306
}
307307

308308
void tryDropAndSignalMBE(T valueToDrop) {
309-
Throwable errorToSignal = new MissingBackpressureException(
310-
"Could not emit value due to lack of requests");
309+
Throwable errorToSignal = MissingBackpressureException.createDefault();
311310
if (onDropped != null) {
312311
try {
313312
onDropped.accept(valueToDrop);

0 commit comments

Comments
 (0)