restore: reduce memory usage

This commit is contained in:
Michael Eischer 2024-05-31 15:50:48 +02:00
parent 2b50c2606c
commit a23cb3a428
1 changed files with 2 additions and 0 deletions

View File

@ -161,6 +161,8 @@ func (r *fileRestorer) restoreFiles(ctx context.Context) error {
file.blobs = packsMap
}
}
// drop no longer necessary file list
r.files = nil
wg, ctx := errgroup.WithContext(ctx)
downloadCh := make(chan *packInfo)