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 have an error flow which sends a 400 response, effectively handling the error, after which I'd like to terminate.
If I set handleError to true the next activity will continue. If I propagate the error my init code will detect it and pass it to my default express error handler which will attempt to send a 500.
I have an error flow which sends a 400 response, effectively handling the error, after which I'd like to terminate.
If I set handleError to true the next activity will continue. If I propagate the error my init code will detect it and pass it to my default express error handler which will attempt to send a 500.
My workaround is to decorate the error with a handled property and use this in my init code, i.e.
however it would be nice if activities had an explicit
break
clauseThe text was updated successfully, but these errors were encountered: