mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-08-28 05:27:41 +00:00
Remove ErrorPolicy enum (continue/fail_fast/ignore) and the k_of_n/quorum join policies from the parallel handler, leaving only wait_all and first_success. This deletes ~180 lines of conditional logic including FailFast early termination, the ParallelEarlyTermination event, and all related tests and documentation. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
19 lines
484 B
Text
19 lines
484 B
Text
digraph Parallel {
|
|
graph [goal="Test parallel and fan-in execution"]
|
|
|
|
start [shape=Mdiamond]
|
|
exit [shape=Msquare]
|
|
|
|
fork [label="Fork Work", shape=component, join_policy="wait_all"]
|
|
branch1 [label="Branch 1"]
|
|
branch2 [label="Branch 2"]
|
|
merge [label="Merge Results", shape=tripleoctagon]
|
|
review [label="Review"]
|
|
|
|
start -> fork
|
|
fork -> branch1
|
|
fork -> branch2
|
|
branch1 -> merge
|
|
branch2 -> merge
|
|
merge -> review -> exit
|
|
}
|