From 01999fa07dc3df194fccaee7460b53ac46fba5e5 Mon Sep 17 00:00:00 2001 From: Anton Ryzhov Date: Tue, 22 Oct 2024 21:20:55 +0200 Subject: [PATCH] Enable context manager dependencies to also catch validation errors --- fastapi/routing.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/fastapi/routing.py b/fastapi/routing.py index 8ea4bb219..f664f0d18 100644 --- a/fastapi/routing.py +++ b/fastapi/routing.py @@ -297,7 +297,12 @@ def get_request_handler( embed_body_fields=embed_body_fields, ) errors = solved_result.errors - if not errors: + if errors: + validation_error = RequestValidationError( + _normalize_errors(errors), body=body + ) + raise validation_error + else: raw_response = await run_endpoint_function( dependant=dependant, values=solved_result.values, @@ -339,11 +344,6 @@ def get_request_handler( if not is_body_allowed_for_status_code(response.status_code): response.body = b"" response.headers.raw.extend(solved_result.response.headers.raw) - if errors: - validation_error = RequestValidationError( - _normalize_errors(errors), body=body - ) - raise validation_error if response is None: raise FastAPIError( "No response object was returned. There's a high chance that the "