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
{{ message }}
This repository has been archived by the owner on Oct 30, 2018. It is now read-only.
The default error() function the composite plugin uses to handle child errors looks like this:
error: function(err){Y.log("Error executing child mojit at '"+this.id+"':",'error',NAME);Y.log(err.message,'error',NAME);Y.log(err.stack,'error',NAME);// Pass back some empty data so we don't fail the compositethis.done('');}
In order to allow the parent mojit to continue running, it passes back an empty string into ac.done(), but we should have a way to communicate child errors
The text was updated successfully, but these errors were encountered:
The default error() function the composite plugin uses to handle child errors looks like this:
In order to allow the parent mojit to continue running, it passes back an empty string into ac.done(), but we should have a way to communicate child errors
The text was updated successfully, but these errors were encountered: