diff --git a/lib/cache/cache.go b/lib/cache/cache.go index 4a4b3dfc3..349f6066c 100644 --- a/lib/cache/cache.go +++ b/lib/cache/cache.go @@ -22,7 +22,7 @@ func New() *Cache { return &Cache{ cache: map[string]*cacheEntry{}, expireRunning: false, - expireDuration: 300 * time.Second, + expireDuration: 24 * time.Hour, expireInterval: 60 * time.Second, } }