fix compatibility with go 1.19

This commit is contained in:
Michael Eischer 2024-05-09 23:26:21 +02:00
parent ff0744b3af
commit 8f8d872a68
2 changed files with 3 additions and 3 deletions

View file

@ -296,8 +296,8 @@ func (be *damageOnceBackend) Load(ctx context.Context, h backend.Handle, length
}
h.IsMetadata = false
_, retry := be.m.Swap(h, true)
if !retry {
_, isRetry := be.m.LoadOrStore(h, true)
if !isRetry {
// return broken data on the first try
offset++
}