mirror of
https://github.com/octoleo/restic.git
synced 2024-11-26 06:46:34 +00:00
swift: restore context err check for list()
This commit is contained in:
parent
e7ec0453b1
commit
5ea8bba1a1
@ -276,6 +276,10 @@ func (be *beSwift) List(ctx context.Context, t restic.FileType, fn func(restic.F
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
if ctx.Err() != nil {
|
||||
return nil, ctx.Err()
|
||||
}
|
||||
}
|
||||
return newObjects, nil
|
||||
})
|
||||
|
Loading…
Reference in New Issue
Block a user