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.
Using static_file = true logs every of these files twice, like:
xxx.xxx.xxx.xxx - 2018-10-30T17:01:44Z GET /favicon.ico HTTP/2.0 304 0 0.2215 -
xxx.xxx.xxx.xxx - 2018-10-30T17:01:44Z GET /favicon.ico HTTP/2.0 304 0 0.2310 -
while a generated, non static html request in both cases (static_file = true or false) gets logged once:
xxx.xxx.xxx.xxx - 2018-10-30T17:01:44Z GET / HTTP/2.0 200 4515 1.9657 -
Don't think it is a big issue, but want to report it.
The text was updated successfully, but these errors were encountered:
@AugustHell I have found the root for the issue. Access log called twice in the request life cycle and one of the call location does not have check for server.access_log.static_file.
I will apply fix in upcoming release v0.12.0. Thanks.
What version of aah are you using (
aah --version
)?v0.11.4
Does this issue reproduce with the latest release?
not tested
What operating system are you using (such as macOS, Linux and Windows)?
Linux
What did you do?
added configuration:
What did you expect to see?
No static files in the access logs
What did you see instead?
Log entries for static .css, .jpg .js .gif files.
Using static_file = true logs every of these files twice, like:
Don't think it is a big issue, but want to report it.
The text was updated successfully, but these errors were encountered: