How to mark parallel task as success though one of the activity in the path has failed

In my use case, I have a Parallel Task that will execute activities parallelly.

Since it is a parallel task I wanted to evaluate the result of all of my paths. While evaluating I can mark the parallel task as a success though any one of my paths throws an exception.

But since my one path activity failure, my entire workflow has been failed. I wanted to evaluate all of my paths and mark them as a success or a failure.

How can I achieve it?

The only reason for the workflow failure is an unhandled error. Make sure to handle the activity failure in the workflow code. This way the workflow is not going to fail.

1 Like