diff options
author | 2018-01-11 18:06:49 +0100 | |
---|---|---|
committer | 2018-01-11 17:06:49 +0000 | |
commit | f1b280de537adab09ce1af8bfd2894ad315fff76 (patch) | |
tree | 485d9df155ca3e18e79a687ffd621e069a211db5 /plugin/cache/cache.go | |
parent | da230cd1facfd8c4440fde539c6e2c933213cd56 (diff) | |
download | coredns-f1b280de537adab09ce1af8bfd2894ad315fff76.tar.gz coredns-f1b280de537adab09ce1af8bfd2894ad315fff76.tar.zst coredns-f1b280de537adab09ce1af8bfd2894ad315fff76.zip |
Remove TTL ceiling at 5s in plugin/cache (#1380)
The cache plugin always returned a minimum TTL of 5 seconds, regardless
of the actual TTL of the records. A cache is not authoritative for the
record TTL and should not extend it.
Diffstat (limited to 'plugin/cache/cache.go')
-rw-r--r-- | plugin/cache/cache.go | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/plugin/cache/cache.go b/plugin/cache/cache.go index 85e7e1bb8..caa38d1f0 100644 --- a/plugin/cache/cache.go +++ b/plugin/cache/cache.go @@ -168,8 +168,6 @@ const ( maxTTL = 1 * time.Hour maxNTTL = 30 * time.Minute - minTTL = 5 // seconds - defaultCap = 10000 // default capacity of the cache. // Success is the class for caching positive caching. |