cadence-java-client icon indicating copy to clipboard operation
cadence-java-client copied to clipboard

Retry Option Failing in Child Workflow

Open dibeshdas151995 opened this issue 5 years ago • 0 comments

I am implementing a Parent Workflow P1 and inside that I am implementing child workflows C!1,C2,C3,C4. The child workflows are implemented sequentially.

Logic : P1 -> Called C1 -> Called (if C1 is success, then C2 will be called) C2 -> Called (if C2 is success, then C3 will be called) C3 -> Called (if C3 is success, then C4 will be called) C4 -> Called (if C4 is success, then P1 is success.) ** Closed **

When it is failing at child workflows, while retrying creating new child workflow ids.

For example, while executing the above logic, the flow got some error at C2, then while retrying the flow, the flow is not resuming from where it failed. Screenshot (12)

dibeshdas151995 avatar Sep 09 '20 13:09 dibeshdas151995