Fix 204 bug

This commit is contained in:
Santiago Lo Coco 2023-12-01 15:51:45 -03:00
parent a860af0ff9
commit dfe9e822a3
1 changed files with 1 additions and 1 deletions

View File

@ -102,7 +102,7 @@ class RouterLoggingMiddleware(BaseHTTPMiddleware):
"time_taken": f"{execution_time:0.4f}s",
}
if self.api_debug:
if self.api_debug and response.status_code != 204:
resp_body = [
section async for section in response.__dict__["body_iterator"]
]