Static cache bug #1
Labels
No Label
bug
duplicate
enhancement
help wanted
invalid
question
wontfix
No Milestone
No project
No Assignees
1 Participants
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: rudism/dotplan-online#1
Loading…
Reference in New Issue
No description provided.
Delete Branch "%!s(<nil>)"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Seems the server starts serving 0 byte responses for static files at some point (even though the
Content-Length
header has the correct response size). Clearing thedata/cache
directory fixes it, leading me to believe it's a problem with the static file cache stuff.I haven't observed the same problem with plan responses through the API, only static files.
I think this is because my uptime monitor is making
HEAD
requests and the server is caching those responses (which will contain the content length but no actual content). Need to ensure cache is only written onGET
requests.