chore(http): do not require auth on /health endpoint

This makes it easier to determine the health of the server using http.

closes #822
This commit is contained in:
Rio Kierkels 2020-07-01 15:45:24 +02:00
parent ad267cbe59
commit 9b46887f75
No known key found for this signature in database
GPG Key ID: 9DBDB0393E8E86A3

View File

@ -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<Data>) -> Result<HttpResponse, ResponseError> {
let reader = data.db.main_read_txn()?;
if let Ok(Some(_)) = data.db.get_health(&reader) {