From 5164801676914fad4d82b70f659c2e1bbebcd31c Mon Sep 17 00:00:00 2001 From: Claude Opus 5 Date: Sat, 1 Aug 2026 12:14:15 +0200 Subject: [PATCH] #301: reset the login rate limit before the VS-NfD packs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit CI 665: the reflow guard itself passed; the run died two packs later on `fixture login for fixture-admin failed: 429`. The a11y pack costs one more login since this branch added the reflow test, and that was enough to exhaust the budget before the VS-NfD packs. Same trap the workflow already documents for the content and collab packs — it just needed one more reset, in the place the extra login pushed it over. --- .gitea/workflows/ci.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index fc5e25f..bc66c81 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -620,6 +620,14 @@ jobs: E2E_BASE_URL=http://localhost:5173 \ pnpm --filter @dorfteich/web exec playwright test e2e/a11y.spec.ts + # Das a11y-Pack kostet seit #301 einen Login mehr (der Reflow-Zaun); + # damit reicht das Budget nicht mehr bis in die VS-NfD-Packs → hier + # zusätzlich zurücksetzen (siehe Hinweis oben). + - name: Reset login rate limit before the VS-NfD packs + run: | + echo "DELETE FROM rate_limits WHERE key LIKE 'login%';" | \ + pnpm --filter @dorfteich/api exec prisma db execute --stdin --url "$DATABASE_URL" + # VS-NfD-Markierungen im Modus `marked` (issue #244). - name: Run VS-NfD marking pack run: |