You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The emissions are for retry with always true predicate:
map 1
1
map 2
map 3
map 1
1
map 2
2
map 3
3
and for infinite retry:
map 1
1
map 2
map 1
1
map 2
2
map 3
3
The emissions are the same and are expected. I'm unsure why the extra line map 3 occurs in the logging of retry with predicate but might be worth checking.
I'll commit the two new unit tests (in OperatorRetryWithPredicateTest) to the #2997 PR.
The following test fails once when mapping 3 values. The subscribe only receives 2 values.
output
When you replace
.retry((i, t) -> {return true;})
with the retry infiniteretry()
then the output looks like this...The text was updated successfully, but these errors were encountered: