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
This closes issue OpenTSDB#42. I believe it also closes issue OpenTSDB#10, since
relative end-dates are no longer handled specially.
Change-Id: I9ee259e7ae94a677bc6fc366024ac385a91a1cdb
Scenario we ran into today:
/q?start=2011/04/19-00:00:00&end=2011/04/20-00:00:00&m=my.metric&ascii
max_age
was set to 86400 seconds (1 day).GraphHandler.isDiskCacheHit
found the cached.txt
file and calledstaleCacheFile
to verify whether it could use it.GraphHandler.staleCacheFile
saw that there was and end date specified and incorrectly returnedfalse
.The problem here is that
GraphHandler.staleCacheFile
should do something like this:max_age
.Thanks to Anoakie Turner for reporting the bug.
The text was updated successfully, but these errors were encountered: