repository: cleanup

This commit is contained in:
Michael Eischer 2022-05-26 16:49:31 +02:00
parent c1a8fa4290
commit 2cd7e90ad1
1 changed files with 2 additions and 5 deletions

View File

@ -243,13 +243,10 @@ func (mi *MasterIndex) Each(ctx context.Context) <-chan restic.PackedBlob {
go func() {
defer mi.idxMutex.RUnlock()
defer func() {
close(ch)
}()
defer close(ch)
for _, idx := range mi.idx {
idxCh := idx.Each(ctx)
for pb := range idxCh {
for pb := range idx.Each(ctx) {
select {
case <-ctx.Done():
return