From 9458d699cb280005c1e41d7a68ce5516226e916d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Mon, 10 Dec 2018 18:17:42 +0400 Subject: [PATCH] :bug: Un-hide inner HTTPException errors --- fastapi/__init__.py | 2 +- fastapi/routing.py | 4 ---- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/fastapi/__init__.py b/fastapi/__init__.py index fc4a08aec..209a0c6d6 100644 --- a/fastapi/__init__.py +++ b/fastapi/__init__.py @@ -1,6 +1,6 @@ """FastAPI framework, high performance, easy to learn, fast to code, ready for production""" -__version__ = "0.1.6" +__version__ = "0.1.7" from .applications import FastAPI from .routing import APIRouter diff --git a/fastapi/routing.py b/fastapi/routing.py index 57ed655cb..c42aeccea 100644 --- a/fastapi/routing.py +++ b/fastapi/routing.py @@ -66,13 +66,9 @@ def get_app( raise HTTPException( status_code=400, detail="There was an error parsing the body" ) - try: values, errors = await solve_dependencies( request=request, dependant=dependant, body=body ) - except Exception as e: - logging.error("Error solving dependencies", e) - raise HTTPException(status_code=400, detail="Error processing request") if errors: errors_out = ValidationError(errors) raise HTTPException(