add slot ttl output with effective timeout config

This commit is contained in:
Abel Luck 2026-02-27 16:43:52 +01:00
parent d8afde8b18
commit 8fdf2d5e5b
5 changed files with 211 additions and 4 deletions

View file

@ -111,6 +111,17 @@ def test_state_summary_returns_counts() -> None:
assert body["slots"]["empty"] == 3
def test_effective_config_returns_capacity_and_scheduler() -> None:
client, _, _, _ = _make_client()
response = client.get("/v1/config/effective")
assert response.status_code == 200
body = response.json()
assert body["capacity"]["max_slots"] == 8
assert body["capacity"]["idle_scale_down_seconds"] == 900
assert body["scheduler"]["tick_seconds"] == 3.0
assert body["scheduler"]["reconcile_seconds"] == 15.0
def test_health_live_returns_ok() -> None:
client, _, _, _ = _make_client()
response = client.get("/health/live")