Skip to content

Commit

Permalink
Updated peer state diagram with a new 'unhealthy' state.
Browse files Browse the repository at this point in the history
  • Loading branch information
kKdH committed Feb 1, 2024
1 parent 6f48e1f commit fd972ee
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions doc/src/architecture/peer/_chapter.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,17 @@
```mermaid
stateDiagram-v2
direction LR
[*] --> Down
Down --> Up: connect
Up --> Down: disconnect
state Up {
[*] --> Available
Available --> Blocked: assign
Blocked --> Available: ready
state Blocked {
[*] --> Healthy
Healthy --> Used: assign
Used --> Healthy: ready
Used --> Unhealthy: error
Healthy --> Unhealthy: error
Unhealthy --> Healthy
state Used {
[*] --> Deploying
Deploying --> Member: success
Deploying --> [*]: failure
Expand Down

0 comments on commit fd972ee

Please sign in to comment.