prune: trigger GC after prune planning

This commit is contained in:
Michael Eischer 2023-06-02 21:57:40 +02:00
parent eef0ee7a85
commit 2fcb3947df
1 changed files with 4 additions and 0 deletions

View File

@ -3,6 +3,7 @@ package main
import ( import (
"context" "context"
"math" "math"
"runtime"
"sort" "sort"
"strconv" "strconv"
"strings" "strings"
@ -205,6 +206,9 @@ func runPruneWithRepo(ctx context.Context, opts PruneOptions, gopts GlobalOption
return err return err
} }
// Trigger GC to reset garbage collection threshold
runtime.GC()
return doPrune(ctx, opts, gopts, repo, plan) return doPrune(ctx, opts, gopts, repo, plan)
} }