You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Gunicorn workers log the date ('%(t)s' fields) with the apache format. However, for some reason the GunicornWorker is using another format. The same happens to the response size ('%(b) field'). Aiohttp instead of logging the size of the response body is logging the size of the whole response, including the headers.
Gunicorn workers log the date ('%(t)s' fields) with the apache format. However, for some reason the
GunicornWorker
is using another format. The same happens to the response size ('%(b) field'). Aiohttp instead of logging the size of the response body is logging the size of the whole response, including the headers.The problem is in the
helper.atoms
functionhttps://github.com/KeepSafe/aiohttp/blob/51ea69d4c863b9a184293371b24e8d3e6651eb25/aiohttp/helpers.py#L228-L260
Below are the results for an app that simply returns
Hello, world
(12 characters).The text was updated successfully, but these errors were encountered: