fabro/test/parallel.fabro
Bryan Helmkamp 588515dbf6 Attractor spec hunks 14 & 16: remove error_policy and k_of_n/quorum from parallel handler
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>
2026-03-23 14:59:35 -04:00

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
}