diff --git a/backend/src/main.rs b/backend/src/main.rs index 4f698454f..67eff08a5 100644 --- a/backend/src/main.rs +++ b/backend/src/main.rs @@ -61,7 +61,7 @@ async fn main() { .route("/subscribe/:bid", get(subscribe)) .route("/refresh/:bid", post(trigger)) .route("/update", post(update)) - .route("/actuator/health/liveness", get(check_health)) + .route("/alive", get(check_health)) .route("/reset", post(reset_active)) .with_state(redis_clients) .layer(cors);