typo in route/health.rs: HealtBody -> HealthBody

This commit is contained in:
Nicolas DUDNICZENKO 2020-05-20 11:57:44 +02:00
parent d30874c912
commit 2d2c933611
1 changed files with 2 additions and 2 deletions

View File

@ -45,14 +45,14 @@ async fn set_unhealthy(data: web::Data<Data>) -> Result<HttpResponse, ResponseEr
}
#[derive(Deserialize, Clone)]
struct HealtBody {
struct HealthBody {
health: bool,
}
#[put("/health", wrap = "Authentication::Private")]
async fn change_healthyness(
data: web::Data<Data>,
body: web::Json<HealtBody>,
body: web::Json<HealthBody>,
) -> Result<HttpResponse, ResponseError> {
if body.health {
set_healthy(data).await