mirror of
https://github.com/minio/minio.git
synced 2025-01-14 08:15:01 -05: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,6 +134,7 @@ func (r *Intelligent) Set(key string, value interface{}) {
|
||||
|
||||
// Delete deletes a given key if exists
|
||||
func (r *Intelligent) Delete(key string) {
|
||||
if _, ok := r.items[key]; ok {
|
||||
r.currentSize -= uint64(len(r.items[key].([]byte)))
|
||||
delete(r.items, key)
|
||||
delete(r.updatedAt, key)
|
||||
@ -141,6 +142,7 @@ func (r *Intelligent) Delete(key string) {
|
||||
if r.OnEvicted != nil {
|
||||
r.OnEvicted(key)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
func (r *Intelligent) isValid(key string) bool {
|
||||
|
Loading…
Reference in New Issue
Block a user