diff options
Diffstat (limited to 'plugin/pkg')
-rw-r--r-- | plugin/pkg/cache/cache.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugin/pkg/cache/cache.go b/plugin/pkg/cache/cache.go index 25faf93ea..954befa76 100644 --- a/plugin/pkg/cache/cache.go +++ b/plugin/pkg/cache/cache.go @@ -31,8 +31,8 @@ type shard struct { // New returns a new cache. func New(size int) *Cache { ssize := size / shardSize - if ssize < 512 { - ssize = 512 + if ssize < 4 { + ssize = 4 } c := &Cache{} |