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
See discussion here. Rather than failing fast on the first rejection, it's possible we could use when.settle to allow all wiring promises to settle and then report the subset (if any) that rejected.
We should at least investigate whether this is possible and useful.
The text was updated successfully, but these errors were encountered:
varerr;settled.then(function(descriptors){descriptors.reduce(function(errors,d){if(d.state==='rejected'){errors.push(d.reason);}returnerrors},[]);if(errors.length>1){err=newError('Multiple errors encountered during wiring. See errors property for details.');err.errors=errors;}else{err=errors[0];}require.error(err);});
See discussion here. Rather than failing fast on the first rejection, it's possible we could use
when.settle
to allow all wiring promises to settle and then report the subset (if any) that rejected.We should at least investigate whether this is possible and useful.
The text was updated successfully, but these errors were encountered: