Merge pull request #697 from ndudnicz/typo/route-health-healtbody

typo in route/health.rs: HealtBody -> HealthBody
This commit is contained in:
Clément Renault 2020-05-20 14:18:38 +02:00 committed by GitHub
commit 3e84f916b6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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