Merge pull request #4301 from MichaelEischer/less-restore-memory

restore: slightly reduce memory usage while restoring files
This commit is contained in:
Michael Eischer
2023-04-30 16:07:43 +02:00
committed by GitHub

View File

@@ -181,6 +181,8 @@ func (r *fileRestorer) restoreFiles(ctx context.Context) error {
wg.Go(func() error {
for _, id := range packOrder {
pack := packs[id]
// allow garbage collection of packInfo
delete(packs, id)
select {
case <-ctx.Done():
return ctx.Err()