Merge pull request #4974 from MichaelEischer/fix-cache-debug-log
cache: fix confusing debug log
This commit is contained in:
commit
e622135e7e
1 changed files with 3 additions and 1 deletions
2
internal/backend/cache/backend.go
vendored
2
internal/backend/cache/backend.go
vendored
|
@ -162,7 +162,9 @@ func (b *Backend) Load(ctx context.Context, h backend.Handle, length int, offset
|
|||
// try loading from cache without checking that the handle is actually cached
|
||||
inCache, err := b.loadFromCache(h, length, offset, consumer)
|
||||
if inCache {
|
||||
if err != nil {
|
||||
debug.Log("error loading %v from cache: %v", h, err)
|
||||
}
|
||||
// the caller must explicitly use cache.Forget() to remove the cache entry
|
||||
return err
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue