Skip to content

Commit 9406706

Browse files
louisgvclaude
andcommitted
fix(e2e): reduce Hetzner batch parallelism from 3 to 2
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: Claude Sonnet 4.5 <noreply@anthropic.com>
1 parent 2077816 commit 9406706

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

sh/e2e/lib/clouds/hetzner.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -378,9 +378,9 @@ _hetzner_cleanup_stale() {
378378
# ---------------------------------------------------------------------------
379379
# _hetzner_max_parallel
380380
#
381-
# Hetzner accounts have a primary IP limit. This QA account supports ~3
382-
# concurrent provisioning operations before hitting resource_limit_exceeded.
381+
# Hetzner accounts have a primary IP limit. Reduced from 3 to 2 to avoid
382+
# server_limit_reached when pre-existing servers consume quota (#3111).
383383
# ---------------------------------------------------------------------------
384384
_hetzner_max_parallel() {
385-
printf '3'
385+
printf '2'
386386
}

0 commit comments

Comments
 (0)