aboutsummaryrefslogtreecommitdiff
path: root/plugin/pkg/cache/cache.go
diff options
context:
space:
mode:
Diffstat (limited to 'plugin/pkg/cache/cache.go')
-rw-r--r--plugin/pkg/cache/cache.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/pkg/cache/cache.go b/plugin/pkg/cache/cache.go
index 19b35e870..5105c4f7d 100644
--- a/plugin/pkg/cache/cache.go
+++ b/plugin/pkg/cache/cache.go
@@ -136,8 +136,8 @@ func (s *shard) Len() int {
// Walk walks the shard for each element the function f is executed while holding a write lock.
func (s *shard) Walk(f func(map[uint64]interface{}, uint64) bool) {
- items := make([]uint64, len(s.items))
s.RLock()
+ items := make([]uint64, len(s.items))
i := 0
for k := range s.items {
items[i] = k