Switching from crypto/rand to math/rand to avoid blocking

Signed-off-by: Dave Henderson <dhenderson@gmail.com>
This commit is contained in:
Dave Henderson 2018-07-09 22:29:43 -04:00
parent b382b6fe0b
commit 9a97ab34ce
No known key found for this signature in database
GPG Key ID: 765A97405DCE5AFA
3 changed files with 3 additions and 3 deletions

View File

@ -18,10 +18,10 @@ package walking
import (
"context"
"crypto/rand"
"encoding/base64"
"fmt"
"io"
"math/rand"
"time"
"github.com/containerd/containerd/archive"

View File

@ -18,9 +18,9 @@ package rootfs
import (
"context"
"crypto/rand"
"encoding/base64"
"fmt"
"math/rand"
"time"
"github.com/containerd/containerd/diff"

View File

@ -18,9 +18,9 @@ package leases
import (
"context"
"crypto/rand"
"encoding/base64"
"fmt"
"math/rand"
"time"
"google.golang.org/grpc"