forked from TrueCloudLab/restic
Merge pull request #3217 from M4a1x/read-data-subset-fix
Fix missing rand seed for restic check --read-data-subset=x%
This commit is contained in:
commit
4d576c2f79
1 changed files with 4 additions and 1 deletions
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue