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
Looking at [1], we see that the seconds and microseconds attributes of the request-time timedelta are run through str.
This is a problem because access_log_format should technically be able to use the full range of Python string-formatting options [2], where applicable by type. For the request-time attributes, this means we should be able to format with %d in addition to %s, but the early conversion to string prevents this.
Simple fix is to remove the call to str(), allowing either a simple %s formatting or %d with all available Python string-formatting options. For example, to work around #584 one should be able to say "%(T)s.%(D)06d".
Looking at [1], we see that the seconds and microseconds attributes of the request-time timedelta are run through str.
This is a problem because access_log_format should technically be able to use the full range of Python string-formatting options [2], where applicable by type. For the request-time attributes, this means we should be able to format with %d in addition to %s, but the early conversion to string prevents this.
Simple fix is to remove the call to str(), allowing either a simple %s formatting or %d with all available Python string-formatting options. For example, to work around #584 one should be able to say "%(T)s.%(D)06d".
Pull request forthcoming.
[1]
gunicorn/gunicorn/glogging.py
Line 241 in 53c4484
[2] http://docs.python.org/2.7/library/stdtypes.html#string-formatting
The text was updated successfully, but these errors were encountered: