Skip to content

Commit

Permalink
revert c==0 test till I have assured that is causing failure
Browse files Browse the repository at this point in the history
  • Loading branch information
davidmoten committed May 6, 2015
1 parent 7c23049 commit 838435c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/rx/internal/operators/OnSubscribeRedo.java
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ public void request(final long n) {
// producer will call setProducer and request with consumerCapacity on the new producer.
producer.request(n);
} else
if (resumeBoundary.compareAndSet(true, false)) {
if (c==0 && resumeBoundary.compareAndSet(true, false)) {
worker.schedule(subscribeToSource);
}
}
Expand Down

0 comments on commit 838435c

Please sign in to comment.