mirror of
https://github.com/himanshudongre/smriti.git
synced 2026-08-28 05:14:59 +00:00
Advertise task ID capability in health
This commit is contained in:
parent
638e6a15d3
commit
9e570a04e3
2 changed files with 2 additions and 0 deletions
|
|
@ -77,6 +77,7 @@ def create_app() -> FastAPI:
|
|||
_capabilities = [
|
||||
"claims", # /api/v5/claims
|
||||
"structured_tasks", # task objects with intent_hint/blocked_by/status
|
||||
"task_ids", # structured task ids + claim.task_id support
|
||||
"checkpoint_notes", # /api/v5/checkpoint/{id}/notes
|
||||
"branch_disposition", # PATCH /api/v5/lineage/branches/disposition
|
||||
"freshness", # since_commit_id on state endpoint
|
||||
|
|
|
|||
|
|
@ -29,6 +29,7 @@ def test_health_includes_required_capabilities(client):
|
|||
required = [
|
||||
"claims",
|
||||
"structured_tasks",
|
||||
"task_ids",
|
||||
"checkpoint_notes",
|
||||
"branch_disposition",
|
||||
"freshness",
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue