From a4541bde18bf8553eb7afb45c7f99ab6577122ba Mon Sep 17 00:00:00 2001 From: Jeroen Schweitzer Date: Sun, 31 May 2026 19:33:42 +0200 Subject: [PATCH] =?UTF-8?q?chore(db):=20raise=20ticket=20WIP=20limit=203?= =?UTF-8?q?=20=E2=86=92=205?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Per maintainer call — 3 was too tight for the parallel Phase 4 work in flight; 5 better matches how many tickets are genuinely active at once. Co-Authored-By: Claude Opus 4.8 (1M context) --- tooling/db/ticket | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tooling/db/ticket b/tooling/db/ticket index 3c486a5f3..c136bb700 100755 --- a/tooling/db/ticket +++ b/tooling/db/ticket @@ -38,7 +38,7 @@ sys.path.insert(0, str(Path(__file__).resolve().parent)) from common import get_connection, load_config # noqa: E402 -WIP_LIMIT = 3 +WIP_LIMIT = 5 def query(conn, sql, params=()):