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 following code does not emit to thrownException. If we change the stream for an Observable.just('test'), it will emit the error. I have a suspicion that the addStream() in the execute() does not work correctly. (line 646 in rx_command.dart: _commandResultsSubject.addStream(inputObservable).then((_) {)
When I replaced code of the RxCommandAsync execute() it did emit the error.
The text was updated successfully, but these errors were encountered:
This wasn't reallya bug because it happened because you never closed the input controller. Still I now changed the implementation in V 4.3.4 so that it will always work. I added your example as new test
The following code does not emit to thrownException. If we change the stream for an
Observable.just('test')
, it will emit the error. I have a suspicion that theaddStream()
in theexecute()
does not work correctly. (line 646 in rx_command.dart:_commandResultsSubject.addStream(inputObservable).then((_) {
)When I replaced code of the RxCommandAsync
execute()
it did emit the error.The text was updated successfully, but these errors were encountered: