Change x/net context package to go stdlib

This commit is contained in:
Jeff Mitchell 2018-07-13 10:59:34 -04:00
parent f85efad941
commit 11c8eb896f
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,7 @@
package etcd
import (
"context"
"errors"
"fmt"
"os"
@ -18,7 +19,6 @@ import (
log "github.com/hashicorp/go-hclog"
"github.com/hashicorp/vault/helper/strutil"
"github.com/hashicorp/vault/physical"
"golang.org/x/net/context"
)
// EtcdBackend is a physical backend that stores data at specific

View File

@ -1,6 +1,7 @@
package etcd
import (
"context"
"fmt"
"os"
"testing"
@ -11,7 +12,6 @@ import (
"github.com/hashicorp/vault/physical"
"github.com/coreos/etcd/client"
"golang.org/x/net/context"
)
func TestEtcdBackend(t *testing.T) {