Actions
Bug #17204
closed[keep-web] Avoid red-herring error log on 304 Not Modified responses
Status:
Resolved
Priority:
Normal
Assigned To:
Category:
Keep
Target version:
Story points:
-
Release:
Release relationship:
Auto
Description
While handling a conditional request that results in a 304 Not Modified response, keep-web logs this error:
"stat.Size()==3299929 but only wrote 0 bytes; read(1024) returns 1024, %!s(<nil>)"We should
- use
%v
instead of%s
so a nil error is just"nil"
instead of"%!s(<nil>)"
- not log this error if the response code is 304
Actions