Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use 422 Unprocessable Entity for form deserialization errors #1681

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion axum-extra/src/extract/form.rs
Expand Up @@ -92,7 +92,7 @@ impl IntoResponse for FormRejection {
match self {
Self::RawFormRejection(inner) => inner.into_response(),
Self::FailedToDeserializeForm(inner) => (
StatusCode::BAD_REQUEST,
StatusCode::UNPROCESSABLE_ENTITY,
format!("Failed to deserialize form: {}", inner),
)
.into_response(),
Expand Down
2 changes: 1 addition & 1 deletion axum/src/extract/rejection.rs
Expand Up @@ -71,7 +71,7 @@ define_rejection! {
}

define_rejection! {
#[status = BAD_REQUEST]
#[status = UNPROCESSABLE_ENTITY]
#[body = "Failed to deserialize form"]
/// Rejection type used if the [`Form`](super::Form) extractor is unable to
/// deserialize the form into the target type.
Expand Down