← Back to Explore

for-substep-break-skips-retry

Substep BREAK bypasses iteration-level retry

Rundown

# Substep BREAK Skips Iteration Retry

## 1. Process items
- FOR i IN 1 TO 3
  - FAIL ANY: RETRY 2 BREAK
- PASS ALL: CONTINUE
- FAIL ANY: STOP

### 1.1 First check
- PASS: DEFER
- FAIL: DEFER

Do the first check.

### 1.2 Second check
- PASS: DEFER
- FAIL: BREAK

Do the second check.

## 2. Done
- PASS: COMPLETE

All items processed.

Run

Initializing...

Initializing...

Step/