Преглед на файлове

aiohttp context: A 204 no content response should not have content

Bastien Sevajol преди 5 години
родител
ревизия
85e2efaa1f
променени са 1 файла, в които са добавени 2 реда и са изтрити 1 реда
  1. 2 1
      hapic/ext/aiohttp/context.py

+ 2 - 1
hapic/ext/aiohttp/context.py Целия файл

@@ -109,7 +109,8 @@ class AiohttpContext(BaseContext):
109 109
     ) -> typing.Any:
110 110
         # A 204 no content response should not have content type header
111 111
         if http_code == HTTPStatus.NO_CONTENT:
112
-            mimetype = None,
112
+            mimetype = None
113
+            response = ''
113 114
 
114 115
         return Response(
115 116
             body=response,