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
I'm doing something where I'm running N spawn to see if a command is available in an environment. I want to collect results of only those spawned processes that return an exit code of 0. I don't want to let the error bubble up, so I end up doing the whole catch -> Observable.empty thing.
If I could use the return code and squash the error I could. Should I fix something with my approach here or is there something worth exposing in spawn-rx?
The text was updated successfully, but these errors were encountered:
I'm doing something where I'm running N spawn to see if a command is available in an environment. I want to collect results of only those spawned processes that return an exit code of 0. I don't want to let the error bubble up, so I end up doing the whole
catch
->Observable.empty
thing.If I could use the return code and squash the error I could. Should I fix something with my approach here or is there something worth exposing in
spawn-rx
?The text was updated successfully, but these errors were encountered: