Fix utilization URL and ensure heartbeats work (#10811)

There was a typo in the name of the utilization endpoint URL, fix it.
Also, ensure that the heartbeat mechanism actually works.

Related: #10583, #10429

Part of #9011
This commit is contained in:
Arpad Müller
2025-02-13 21:55:53 +01:00
committed by GitHub
parent 487f3202fe
commit 5008324460
2 changed files with 13 additions and 4 deletions

View File

@@ -626,7 +626,7 @@ pub fn make_router(
failpoints_handler(r, cancel).await
})
})
.get("/v1/uzilization", |r| request_span(r, utilization_handler))
.get("/v1/utilization", |r| request_span(r, utilization_handler))
.delete("/v1/tenant/:tenant_id", |r| {
request_span(r, tenant_delete_handler)
})