mirror of
https://github.com/minio/minio.git
synced 2025-04-16 08:58:11 -04:00
Merge pull request #575 from fkautz/pr_out_fixing_panic_in_intelligent_attempted_to_delete_nonexistent_key
This commit is contained in:
commit
0266ec4bf6
@ -134,12 +134,14 @@ func (r *Intelligent) Set(key string, value interface{}) {
|
|||||||
|
|
||||||
// Delete deletes a given key if exists
|
// Delete deletes a given key if exists
|
||||||
func (r *Intelligent) Delete(key string) {
|
func (r *Intelligent) Delete(key string) {
|
||||||
r.currentSize -= uint64(len(r.items[key].([]byte)))
|
if _, ok := r.items[key]; ok {
|
||||||
delete(r.items, key)
|
r.currentSize -= uint64(len(r.items[key].([]byte)))
|
||||||
delete(r.updatedAt, key)
|
delete(r.items, key)
|
||||||
r.totalEvicted++
|
delete(r.updatedAt, key)
|
||||||
if r.OnEvicted != nil {
|
r.totalEvicted++
|
||||||
r.OnEvicted(key)
|
if r.OnEvicted != nil {
|
||||||
|
r.OnEvicted(key)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user