← Back to Explore

for-retry-succeeds

RETRY succeeds on second attempt — no BREAK

Rundown

# RETRY Succeeds — No BREAK

Retry gives the iteration another chance. If substeps pass on retry, BREAK never fires.

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

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

Check item.

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

Validate item.

## 2. Done
- PASS COMPLETE

All items processed.

Run

Initializing...

Initializing...

Step/2