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
commit 6dc2324d2e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

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()