refactor: architektur-optimierungen (systemd, jq, httpx, commit-hook)

This commit is contained in:
Hitonabi
2026-07-06 20:38:18 +02:00
parent 3fba487963
commit c92f238d2d
5 changed files with 30 additions and 4 deletions
+1 -1
View File
@@ -72,7 +72,7 @@ async def lifespan(app: FastAPI) -> AsyncGenerator[None, None]:
# pro /v1-Anfrage (spart Sockets/TIME_WAIT unter parallelen Agent-Strömen von Zed/Kilo).
app.state.gw_client = httpx.AsyncClient(
timeout=httpx.Timeout(connect=10.0, read=None, write=None, pool=10.0),
limits=httpx.Limits(max_keepalive_connections=32, max_connections=64),
limits=httpx.Limits(max_keepalive_connections=100, max_connections=200),
)
try:
yield