Skip to content

Commit cb6333e

Browse files
TODO for removing this timeout
this code is just for finding bugs during the 0.20-RCs
1 parent 7fdde98 commit cb6333e

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

rxjava-core/src/main/java/rx/internal/operators/BlockingOperatorToIterator.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ public T next() {
9090

9191
private Notification<? extends T> take() {
9292
try {
93+
// TODO remove this timeout and logging before final release of 0.20
9394
Notification<? extends T> n = notifications.poll(10000, TimeUnit.MILLISECONDS);
9495
if(n == null) {
9596
System.err.println("Timed out waiting for value. File a bug at github.com/Netflix/RxJava");

0 commit comments

Comments
 (0)