fix(e2e): reduce Hetzner batch parallelism from 3 to 2 (#3112)

Prevents server_limit_reached errors when pre-existing servers (e.g.
spawn-szil) consume quota during E2E batch 1.

Fixes #3111

Agent: test-engineer

Co-authored-by: B <6723574+louisgv@users.noreply.github.com>
Co-authored-by: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
A 2026-03-30 13:08:18 -07:00 committed by GitHub
parent 2077816b61
commit f2f981bd0a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -378,9 +378,9 @@ _hetzner_cleanup_stale() {
# --------------------------------------------------------------------------- # ---------------------------------------------------------------------------
# _hetzner_max_parallel # _hetzner_max_parallel
# #
# Hetzner accounts have a primary IP limit. This QA account supports ~3 # Hetzner accounts have a primary IP limit. Reduced from 3 to 2 to avoid
# concurrent provisioning operations before hitting resource_limit_exceeded. # server_limit_reached when pre-existing servers consume quota (#3111).
# --------------------------------------------------------------------------- # ---------------------------------------------------------------------------
_hetzner_max_parallel() { _hetzner_max_parallel() {
printf '3' printf '2'
} }