From b0b88f9d5b717cff28dd3e056e31fb6eb4fef73f Mon Sep 17 00:00:00 2001 From: Ricardo Momm Date: Wed, 15 May 2019 07:50:58 -0300 Subject: [PATCH] :loud_sound: Raise from previous exception (#195) --- fastapi/routing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fastapi/routing.py b/fastapi/routing.py index a027b0b07..ac8192baf 100644 --- a/fastapi/routing.py +++ b/fastapi/routing.py @@ -61,7 +61,7 @@ def get_app( logging.error(f"Error getting request body: {e}") raise HTTPException( status_code=400, detail="There was an error parsing the body" - ) + ) from e values, errors, background_tasks = await solve_dependencies( request=request, dependant=dependant, body=body )