Skip to content

Commit 838435c

Browse files
committed
revert c==0 test till I have assured that is causing failure
1 parent 7c23049 commit 838435c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -375,7 +375,7 @@ public void request(final long n) {
375375
// producer will call setProducer and request with consumerCapacity on the new producer.
376376
producer.request(n);
377377
} else
378-
if (resumeBoundary.compareAndSet(true, false)) {
378+
if (c==0 && resumeBoundary.compareAndSet(true, false)) {
379379
worker.schedule(subscribeToSource);
380380
}
381381
}

0 commit comments

Comments
 (0)