diff --git a/meilisearch-http/src/routes/health.rs b/meilisearch-http/src/routes/health.rs index 0f0a3a203..4ae684b47 100644 --- a/meilisearch-http/src/routes/health.rs +++ b/meilisearch-http/src/routes/health.rs @@ -10,7 +10,7 @@ pub fn services(cfg: &mut web::ServiceConfig) { cfg.service(get_health).service(change_healthyness); } -#[get("/health", wrap = "Authentication::Private")] +#[get("/health")] async fn get_health(data: web::Data) -> Result { let reader = data.db.main_read_txn()?; if let Ok(Some(_)) = data.db.get_health(&reader) {