cache: enable internal tests and fix race condition for them (#1928)
This commit is contained in:
parent
6f1ae00c7f
commit
ebbe77f525
2 changed files with 4 additions and 4 deletions
4
cache/storage_persistent.go
vendored
4
cache/storage_persistent.go
vendored
|
@ -528,6 +528,10 @@ func (b *Persistent) CleanChunksBySize(maxSize int64) {
|
|||
})
|
||||
|
||||
if err != nil {
|
||||
if err == bolt.ErrDatabaseNotOpen {
|
||||
// we're likely a late janitor and we need to end quietly as there's no guarantee of what exists anymore
|
||||
return
|
||||
}
|
||||
fs.Errorf("cache", "cleanup failed: %v", err)
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue