Skip to content

Commit cb4bf20

Browse files
authored
Merge pull request #2454 from hairyhenderson/use-math-rand-instead-of-crypto-rand
Switching from crypto/rand to math/rand to avoid blocking
2 parents b382b6f + 9a97ab3 commit cb4bf20

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

diff/walking/differ.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ package walking
1818

1919
import (
2020
"context"
21-
"crypto/rand"
2221
"encoding/base64"
2322
"fmt"
2423
"io"
24+
"math/rand"
2525
"time"
2626

2727
"github.com/containerd/containerd/archive"

rootfs/apply.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ package rootfs
1818

1919
import (
2020
"context"
21-
"crypto/rand"
2221
"encoding/base64"
2322
"fmt"
23+
"math/rand"
2424
"time"
2525

2626
"github.com/containerd/containerd/diff"

services/leases/local.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ package leases
1818

1919
import (
2020
"context"
21-
"crypto/rand"
2221
"encoding/base64"
2322
"fmt"
23+
"math/rand"
2424
"time"
2525

2626
"google.golang.org/grpc"

0 commit comments

Comments
 (0)