Browse Source
🔇 Remove error log when parsing malformed JSON body as it's a client error (#1351)
pull/1569/head
Dylan Anthony
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
0 additions and
1 deletions
-
fastapi/routing.py
|
|
@ -179,7 +179,6 @@ def get_request_handler( |
|
|
|
if body_bytes: |
|
|
|
body = await request.json() |
|
|
|
except Exception as e: |
|
|
|
logger.error(f"Error getting request body: {e}") |
|
|
|
raise HTTPException( |
|
|
|
status_code=400, detail="There was an error parsing the body" |
|
|
|
) from e |
|
|
|