In the case of steps of type While Loop, the step is restarted
at the iteration where the step failed, based on the value of the
BF_ITERATION system variable. Example job flow:
- Job enters step of type While Loop
- Condition evaluates to true
- BF_ITERATION is set to 1
- The Command and Inline are run successfully
- The step loops
- Condition evaluates to true
- BF_ITERATION is set to 2
- The job is stopped during execution of the Command or Inline
If the job above is restarted, it restarts at Iteration 2. It attempts
to run the Command and Inline for the step.