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
seems finally itself has the same problem. do i get something wrong about the concept or are the intermediate iterables responsible for returning the source iterables?
https://github.com/ReactiveX/IxJS/blob/master/src/asynciterable/timeout.ts#L31
IxJS version: 2.5.3
Code to reproduce:
Expected behavior:
timeout returns the source iterator and therefore
finally
getting loggedActual behavior:
timeout does not return the source iterator and therefore
finally
never gets loggedAdditional information:
wrapping the whole while loop into a
try ... finally
works:also the timeout function is missing from
AsyncIterableX.prototype
The text was updated successfully, but these errors were encountered: