log unexpected errs from b2 ListCurrentObject()

gh-1385
This commit is contained in:
George Armhold 2017-10-29 08:53:39 -04:00
parent f854a41ba9
commit 2f8147af59
1 changed files with 2 additions and 0 deletions

View File

@ -319,6 +319,8 @@ func (be *b2Backend) List(ctx context.Context, t restic.FileType) <-chan string
objs, c, err := be.bucket.ListCurrentObjects(ctx, be.listMaxItems, cur)
be.sem.ReleaseToken()
if err != nil && err != io.EOF {
// TODO: return err to caller once err handling in List() is improved
debug.Log("List: %v", err)
return
}
debug.Log("returned %v items", len(objs))