diff --git a/pkg/fpstore/cache.go b/pkg/fpstore/cache.go index 3924c9b..21e7b7f 100644 --- a/pkg/fpstore/cache.go +++ b/pkg/fpstore/cache.go @@ -24,7 +24,7 @@ type RedisFingerprintCache struct { func NewRedisFingerprintCache(cache redis.Cmdable) *RedisFingerprintCache { return &RedisFingerprintCache{ cache: cache, - ttl: 7 * 24 * time.Hour, + ttl: 90 * 24 * time.Hour, } }