Skip to content

Commit

Permalink
Update states.md
Browse files Browse the repository at this point in the history
  • Loading branch information
terrywbrady authored Jan 26, 2024
1 parent c539445 commit 3155402
Showing 1 changed file with 14 additions and 4 deletions.
18 changes: 14 additions & 4 deletions design/queue-2023/states.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,20 @@
### States

```mermaid
graph TD
START
Pending
end
graph LR
START --> Pending
Pending --> Held
Pending --> Processing
Held -.-> Processing
Processing --> Failed
Processing --> Reporting
Reporting --> COMPLETED
Reporting --> Failed
Failed -.-> UpdateReporting
UpdateReporting --> Failed
UpdateReporting --> COMPLETED
Failed -.-> DELETED
Held -.-> DELETED
```

- pending
Expand Down

0 comments on commit 3155402

Please sign in to comment.