mirror of
https://github.com/hashicorp/vault.git
synced 2026-06-09 08:55:13 -04:00
Change x/net context package to go stdlib
This commit is contained in:
parent
f85efad941
commit
11c8eb896f
2 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue