Fix missing rand seed for restic check --read-data-subset=x%

This commit is contained in:
Max Stabel 2021-01-05 16:36:41 +01:00 committed by Michael Eischer
parent cdd704920d
commit f9e1fa26ff
1 changed files with 4 additions and 1 deletions

View File

@ -5,6 +5,7 @@ import (
"math/rand"
"strconv"
"strings"
"time"
"github.com/spf13/cobra"
@ -333,7 +334,9 @@ func selectRandomPacksByPercentage(allPacks map[restic.ID]int64, percentage floa
if packsToCheck < 1 {
packsToCheck = 1
}
idx := rand.Perm(packCount)
timeNs := time.Now().UnixNano()
r := rand.New(rand.NewSource(timeNs))
idx := r.Perm(packCount)
var keys []restic.ID
for k := range allPacks {