swift: restore context err check for list()

This commit is contained in:
Michael Eischer 2021-09-24 21:19:46 +02:00
parent e7ec0453b1
commit 5ea8bba1a1
1 changed files with 4 additions and 0 deletions

View File

@ -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
})