Recurring pattern, three sightings on 2026-07-11 alone (PR #409 run 29144621874; PR #410 runs at 57c7394-era and 64c58ce):
- The Python suite passes 307-308 tests, then 1-2 tests at the very end of the run (~15-17 minutes in, always in
tests/test_start_config.py so far: test_default_start_on_fresh_install_auto_finalizes_to_queue_storage, test_tuple_form_backward_compat, test_partitioned_queue_configs_expand_and_dispatch) ERROR at fixture setup with _awa.DatabaseError: pool timed out while waiting for an open connection.
- Reruns pass. The affected branches touch no pool code.
The end-of-suite + fixture-setup signature suggests connection accumulation across the session (leaked pools from earlier tests exhausting the service container's max_connections, or client pools not fully closed — note the #408 class of runtime-teardown pool behavior in the bridge). test_start_config tests create fresh clients with their own pools, which makes them the first victims of an exhausted server.
Diagnosis ideas: log pg_stat_activity count from a fixture at suite start/end; or set a lower max_connections locally to reproduce faster; or audit which tests create AsyncClients without closing.
Not release-blocking (rerun-clearable), but it costs a rerun on most full-ci passes now — same operational-cost class as #399.
Recurring pattern, three sightings on 2026-07-11 alone (PR #409 run 29144621874; PR #410 runs at 57c7394-era and 64c58ce):
tests/test_start_config.pyso far:test_default_start_on_fresh_install_auto_finalizes_to_queue_storage,test_tuple_form_backward_compat,test_partitioned_queue_configs_expand_and_dispatch) ERROR at fixture setup with_awa.DatabaseError: pool timed out while waiting for an open connection.The end-of-suite + fixture-setup signature suggests connection accumulation across the session (leaked pools from earlier tests exhausting the service container's max_connections, or client pools not fully closed — note the #408 class of runtime-teardown pool behavior in the bridge). test_start_config tests create fresh clients with their own pools, which makes them the first victims of an exhausted server.
Diagnosis ideas: log
pg_stat_activitycount from a fixture at suite start/end; or set a lowermax_connectionslocally to reproduce faster; or audit which tests create AsyncClients without closing.Not release-blocking (rerun-clearable), but it costs a rerun on most full-ci passes now — same operational-cost class as #399.