Skip to content

Commit bb23c0f

Browse files
committed
Replace golang.org/x/net/context with standard library context package
1 parent c6e2952 commit bb23c0f

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

internal/driver/identityserver.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,9 @@ package driver
1717
import (
1818
"fmt"
1919

20+
"context"
21+
2022
csi "github.com/container-storage-interface/spec/lib/go/csi"
21-
"golang.org/x/net/context"
2223
"google.golang.org/grpc/codes"
2324
"google.golang.org/grpc/status"
2425
"google.golang.org/protobuf/types/known/wrapperspb"

internal/driver/nodeserver.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,9 @@ import (
2121
"sync"
2222
"time"
2323

24+
"context"
25+
2426
"github.com/container-storage-interface/spec/lib/go/csi"
25-
"golang.org/x/net/context"
2627
"google.golang.org/grpc/codes"
2728
"google.golang.org/grpc/status"
2829
"k8s.io/mount-utils"

0 commit comments

Comments
 (0)