diff --git a/backend/src/status/health_check.rs b/backend/src/status/health_check.rs index 75185c880..c38f08330 100644 --- a/backend/src/status/health_check.rs +++ b/backend/src/status/health_check.rs @@ -84,9 +84,10 @@ impl HealthChecks { } #[derive(Clone, Debug, Deserialize, Serialize)] +#[serde(rename_all = "kebab-case")] pub struct HealthCheck { pub name: String, - pub description: String, + pub success_message: Option, #[serde(flatten)] implementation: ActionImplementation, pub timeout: Option,