PDA

View Full Version : Question on group step behavior


tscdsb
08-27-2009, 09:06 AM
Given the following script script snippet:

Group
Action1
Process Files
Action2

How would I get the group of actions to retry if Action2 were to fail?

Action1 produces a set of files that are then validated by Action2 in the Process Files step. If the validation fails I want to retry the group of actions (as defined in the step settings of the Group step). Will the failure of Action2 trigger the retry of the Group? Action2 is set to continue on failure.

kinook
08-28-2009, 03:22 PM
The built-in retry feature operates on the current step, not a previous or parent step. You could do something like the attached for that.

tscdsb
08-28-2009, 03:47 PM
Thanks, that's what I thought.