The capability filter on /status/resources?capability= is incorrectly set to a list of allocation units. It is meant to be the capability you want to filter the list of resources by.
in app/routers/status/status.py should be
capability: str = Query(default=None, min_length=1, description="Capability id to filter by"),
not
capability: List[AllocationUnit] = Query(default=None, min_length=1),
The
capabilityfilter on/status/resources?capability=is incorrectly set to a list of allocation units. It is meant to be the capability you want to filter the list of resources by.in
app/routers/status/status.pyshould becapability: str = Query(default=None, min_length=1, description="Capability id to filter by"),not
capability: List[AllocationUnit] = Query(default=None, min_length=1),