From b74872671b5b7e92c281c20cae2f9ca833761fb7 Mon Sep 17 00:00:00 2001 From: Jacek Chmielewski Date: Mon, 25 May 2026 08:48:18 +0200 Subject: [PATCH] fix posture errors separator --- src/error.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/error.rs b/src/error.rs index 56c0ef6..3491c5f 100644 --- a/src/error.rs +++ b/src/error.rs @@ -47,7 +47,7 @@ impl IntoResponse for ApiError { ), Self::PreconditionRequired(msg) => (StatusCode::PRECONDITION_REQUIRED, msg), Self::NotFound(msg) => (StatusCode::NOT_FOUND, msg), - Self::PostureRejected(reasons) => (StatusCode::FORBIDDEN, reasons.join(" ,")), + Self::PostureRejected(reasons) => (StatusCode::FORBIDDEN, reasons.join(", ")), _ => ( StatusCode::INTERNAL_SERVER_ERROR, "Internal server error".to_string(),