mirror of
https://github.com/octoleo/restic.git
synced 2024-11-01 03:12:31 +00:00
Fix missing rand seed for restic check --read-data-subset=x%
This commit is contained in:
parent
cdd704920d
commit
f9e1fa26ff
@ -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 New Issue
Block a user