Remove incorrect usage of golang.org/x/net/context

Signed-off-by: Davanum Srinivas <davanum@gmail.com>
This commit is contained in:
Davanum Srinivas 2024-11-01 09:32:39 -04:00
parent d87bf75c29
commit f74d6bc86b
No known key found for this signature in database
GPG Key ID: 80D83A796103BF59
4 changed files with 4 additions and 5 deletions

View File

@ -17,13 +17,13 @@ limitations under the License.
package service
import (
"context"
"fmt"
"path"
"reflect"
"strconv"
"github.com/container-storage-interface/spec/lib/go/csi"
"golang.org/x/net/context"
"google.golang.org/grpc/codes"
"google.golang.org/grpc/status"

View File

@ -17,7 +17,7 @@ limitations under the License.
package service
import (
"golang.org/x/net/context"
"context"
"github.com/container-storage-interface/spec/lib/go/csi"
"github.com/golang/protobuf/ptypes/wrappers"

View File

@ -17,6 +17,7 @@ limitations under the License.
package service
import (
"context"
"fmt"
"path"
"strconv"
@ -24,8 +25,6 @@ import (
"google.golang.org/grpc/codes"
"google.golang.org/grpc/status"
"golang.org/x/net/context"
"github.com/container-storage-interface/spec/lib/go/csi"
)

View File

@ -17,6 +17,7 @@ limitations under the License.
package service
import (
"context"
"fmt"
"os"
"strings"
@ -24,7 +25,6 @@ import (
"sync/atomic"
"github.com/container-storage-interface/spec/lib/go/csi"
"golang.org/x/net/context"
"google.golang.org/grpc/codes"
"k8s.io/kubernetes/test/e2e/storage/drivers/csi-test/mock/cache"