Skip to content

Commit

Permalink
f
Browse files Browse the repository at this point in the history
  • Loading branch information
ghostwords committed Oct 13, 2023
1 parent d13ecf6 commit c09bfdd
Showing 1 changed file with 40 additions and 40 deletions.
80 changes: 40 additions & 40 deletions ARCHITECTURE.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,57 +77,57 @@ fork2 --> CheckBadgerScan2
fork2 --> CheckBadgerScanN
state PollInProgressScansForStatus {
ddd1: ...
chk1: CheckForFailure
rei1: BadgerInit
pro1: ExtractProgress
ter1: CheckForTermination
fin1: ExtractResults
fai1: ExtractErrorLog
del1: DeleteDroplet
sta1: CheckForStall
res1: RestartScan
ddd2: ...
chk3: CheckForFailure
rei3: BadgerInit
pro3: ExtractProgress
ter3: CheckForTermination
fin3: ExtractResults
fai3: ExtractErrorLog
del3: DeleteDroplet
sta3: CheckForStall
res3: RestartScan
ddd3: ...
state CheckBadgerScan1 {
[*] --> ddd1
ddd1 --> [*]
}
--
state CheckBadgerScan2 {
[*] --> ddd2
ddd2 --> [*]
}
--
state CheckBadgerScanN {
[*] --> chk3
[*] --> chk1
state scan3_failed <<choice>>
chk3 --> scan3_failed
scan3_failed --> rei3 : Scan previously failed
scan3_failed --> pro3 : No error log found
state scan1_failed <<choice>>
chk1 --> scan1_failed
scan1_failed --> rei1 : Scan previously failed
scan1_failed --> pro1 : No error log found
rei3 --> [*]
rei1 --> [*]
pro3 --> ter3
pro1 --> ter1
state scan3_term <<choice>>
ter3 --> scan3_term
scan3_term --> fin3 : Scan finished
scan3_term --> fai3: Scan failed
scan3_term --> sta3 : Scan is still running
state scan1_term <<choice>>
ter1 --> scan1_term
scan1_term --> fin1 : Scan finished
scan1_term --> fai1: Scan failed
scan1_term --> sta1 : Scan is still running
fin3 --> del3
fai3 --> del3
fin1 --> del1
fai1 --> del1
del3 --> [*]
del1 --> [*]
state scan3_stall <<choice>>
sta3 --> scan3_stall
scan3_stall --> res3: Progress file is stale
scan3_stall --> [*] : Progress was updated recently
state scan1_stall <<choice>>
sta1 --> scan1_stall
scan1_stall --> res1: Progress file is stale
scan1_stall --> [*] : Progress was updated recently
res3 --> [*]
res1 --> [*]
}
--
state CheckBadgerScan2 {
[*] --> ddd2
ddd2 --> [*]
}
--
state CheckBadgerScanN {
[*] --> ddd1
ddd1 --> [*]
}
}
Expand Down

0 comments on commit c09bfdd

Please sign in to comment.