fix: improve connection pool idle and max age checks to allow disabling #3

Merged
serversdown merged 10 commits from dev-persistent into main 2026-06-08 16:56:34 -04:00
Showing only changes of commit e3f9ca7f5b - Show all commits
+2 -2
View File
@@ -76,12 +76,12 @@ app.include_router(routers.router)
@app.get("/", response_class=HTMLResponse) @app.get("/", response_class=HTMLResponse)
def index(request: Request): def index(request: Request):
return templates.TemplateResponse("index.html", {"request": request}) return templates.TemplateResponse(request, "index.html")
@app.get("/roster", response_class=HTMLResponse) @app.get("/roster", response_class=HTMLResponse)
def roster(request: Request): def roster(request: Request):
return templates.TemplateResponse("roster.html", {"request": request}) return templates.TemplateResponse(request, "roster.html")
@app.get("/health") @app.get("/health")