From 9c22b6f2fdc197b223f6e9d4325f9e547953b5e0 Mon Sep 17 00:00:00 2001 From: Matthew Grotke Date: Mon, 1 Jun 2026 01:29:35 -0400 Subject: [PATCH] Development --- routlin/health.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/routlin/health.py b/routlin/health.py index 8e5df29..77e96eb 100644 --- a/routlin/health.py +++ b/routlin/health.py @@ -65,8 +65,7 @@ def _vlan_service_name(vlan, iface): def _radius_enabled(data): return any( r.get("radius_client") is True - for v in data.get("vlans", []) - for r in v.get("reservations", []) + for r in data.get("dhcp_reservations", []) ) def _avahi_enabled(data):