Skip to content

Commit 2a9c09f

Browse files
committed
docs: clarify execution flow
Signed-off-by: Michael Gasch <15986659+embano1@users.noreply.github.com>
1 parent 1870213 commit 2a9c09f

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

LANGUAGE_SDK_SPECIFICATION.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -302,13 +302,14 @@ The SDK MUST:
302302

303303
```mermaid
304304
flowchart LR
305-
New[Customer calls operation] --> START
306-
START --> |Started| SUCCEED
305+
STARTED[Execution starts] --> |Started| SUCCEED
307306
SUCCEED --> |Succeeded| Success[Completes successfully]
308-
START --> |Started| FAIL
307+
STARTED --> |Started| FAIL
309308
FAIL --> |Failed| Failure[Completes with error]
310309
```
311310

311+
Note: The EXECUTION operation is always in STARTED status when the handler begins. It does not have a START action.
312+
312313
### 4.4 STEP Operation
313314

314315
#### 4.4.1 Purpose

0 commit comments

Comments
 (0)