mirror of
https://github.com/octoleo/restic.git
synced 2024-11-23 13:17:42 +00:00
fix compatibility with go 1.19
This commit is contained in:
parent
ff0744b3af
commit
8f8d872a68
@ -333,7 +333,7 @@ type errorOnceBackend struct {
|
||||
}
|
||||
|
||||
func (b *errorOnceBackend) Load(ctx context.Context, h backend.Handle, length int, offset int64, consumer func(rd io.Reader) error) error {
|
||||
_, isRetry := b.m.Swap(h, struct{}{})
|
||||
_, isRetry := b.m.LoadOrStore(h, struct{}{})
|
||||
return b.Backend.Load(ctx, h, length, offset, func(rd io.Reader) error {
|
||||
if !isRetry && h.Type != restic.ConfigFile {
|
||||
return consumer(errorReadCloser{rd})
|
||||
|
@ -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++
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user