mirror of
https://github.com/meilisearch/meilisearch.git
synced 2024-11-26 20:15:07 +08:00
Merge pull request #823 from Rio/public-health-endpoint
chore(http): do not require auth on /health endpoint
This commit is contained in:
commit
92d9283d1a
@ -10,7 +10,7 @@ pub fn services(cfg: &mut web::ServiceConfig) {
|
|||||||
cfg.service(get_health).service(change_healthyness);
|
cfg.service(get_health).service(change_healthyness);
|
||||||
}
|
}
|
||||||
|
|
||||||
#[get("/health", wrap = "Authentication::Private")]
|
#[get("/health")]
|
||||||
async fn get_health(data: web::Data<Data>) -> Result<HttpResponse, ResponseError> {
|
async fn get_health(data: web::Data<Data>) -> Result<HttpResponse, ResponseError> {
|
||||||
let reader = data.db.main_read_txn()?;
|
let reader = data.db.main_read_txn()?;
|
||||||
if let Ok(Some(_)) = data.db.get_health(&reader) {
|
if let Ok(Some(_)) = data.db.get_health(&reader) {
|
||||||
|
Loading…
Reference in New Issue
Block a user