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
One question I have - is it possible to pass async.parallel a parameter to tell it to not immediately call the final callback when there is an error passed callback(err,null) by one of the parallel functions?
I want to be able to put all the errors in an array + I also want to allow all the functions to complete, even in the case of an error in one or more of them.
Does this make sense? is it already possible?
The text was updated successfully, but these errors were encountered:
How to continue *parallel* processing in case of a failing task seems to be a frequently asked question. It was mentioned in several issues:
- caolan/async#334
- caolan/async#675
- caolan/async#798
- caolan/async#942
Adding a hint to the documentation might help users of the library to find out about the answer to this question.
Hello, thanks for your wonderful lib !!
One question I have - is it possible to pass async.parallel a parameter to tell it to not immediately call the final callback when there is an error passed
callback(err,null)
by one of the parallel functions?I want to be able to put all the errors in an array + I also want to allow all the functions to complete, even in the case of an error in one or more of them.
Does this make sense? is it already possible?
The text was updated successfully, but these errors were encountered: