mirror of https://github.com/restic/restic.git
restore: slightly reduce memory usage while restoring files
The information which target files are contained in a pack file is no longer necessary after processing a pack.
This commit is contained in:
parent
22562d2132
commit
94cbc6392d
|
@ -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()
|
||||
|
|
Loading…
Reference in New Issue