diff --git a/sh/e2e/lib/clouds/hetzner.sh b/sh/e2e/lib/clouds/hetzner.sh index 82bd015b7..962cc7a94 100644 --- a/sh/e2e/lib/clouds/hetzner.sh +++ b/sh/e2e/lib/clouds/hetzner.sh @@ -378,9 +378,9 @@ _hetzner_cleanup_stale() { # --------------------------------------------------------------------------- # _hetzner_max_parallel # -# Hetzner accounts have a primary IP limit. This QA account supports ~3 -# concurrent provisioning operations before hitting resource_limit_exceeded. +# Hetzner accounts have a primary IP limit. Reduced from 3 to 2 to avoid +# server_limit_reached when pre-existing servers consume quota (#3111). # --------------------------------------------------------------------------- _hetzner_max_parallel() { - printf '3' + printf '2' }