@Rahul
There are two ways that I can think of at the moment, of how you can implement the retry:
-
Handling the retry on the parent pipeline
- After pipeline execute, check the status using Router Snap. If its 1 then call the child pipeline again. If its 0 then proceed with post - processing steps.
![]()
-
Handling retry on child pipeline level:
- After the REST Call, to have a check for the status. If its 1 then self-call the child pipeline until the status comes to 1.
![]()
You can also implement a counter, where you will specify the number of retries.
Regards,
Spiro Taleski