summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--cache/dynacache/dynacache.go9
1 files changed, 1 insertions, 8 deletions
diff --git a/cache/dynacache/dynacache.go b/cache/dynacache/dynacache.go
index 0fd51590c..85b360138 100644
--- a/cache/dynacache/dynacache.go
+++ b/cache/dynacache/dynacache.go
@@ -119,8 +119,7 @@ func (o OptionsPartition) CalculateMaxSize(maxSizePerPartition int) int {
// A dynamic partitioned cache.
type Cache struct {
- mu sync.RWMutex
- resizeMu sync.Mutex
+ mu sync.RWMutex
partitions map[string]PartitionManager
@@ -232,12 +231,6 @@ func (c *Cache) Stop() {
}
func (c *Cache) adjustCurrentMaxSize() {
- if !c.resizeMu.TryLock() {
- // Prevent multiple concurrent resizes.
- return
- }
- defer c.resizeMu.Unlock()
-
c.mu.RLock()
defer c.mu.RUnlock()