harn-parser 0.8.27

Parser, AST, and type checker for the Harn programming language
Documentation
1
2
3
4
5
6
7
8
9
# HARN-POL-002 — fail-fast pool has no immediate capacity

`pool.submit(...)` targeted a pool configured with
`Backpressure().fail_fast`, but all worker slots were already occupied.
Fail-fast pools do not queue work.

Catch the error if rejection is expected, raise `max_concurrent`, or use
`Backpressure().queue(...)` when callers should wait, drop, or retain a
bounded queue instead.