Skip to content

Commit

Permalink
fix etcd import paths
Browse files Browse the repository at this point in the history
  • Loading branch information
h8liu committed Sep 11, 2018
1 parent 0d586fe commit 8f75fa9
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
5 changes: 3 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,7 @@ require (
github.com/basvanbeek/ocsql v0.0.0-20180627133915-d946a62502e3
github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973 // indirect
github.com/census-ecosystem/opencensus-go-exporter-aws v0.0.0-20180411051634-41633bc1ff6b
github.com/coreos/bbolt v1.3.1-coreos.6 // indirect
github.com/coreos/etcd v3.3.9+incompatible
github.com/coreos/etcd v3.3.9+incompatible // indirect
github.com/coreos/go-semver v0.2.0 // indirect
github.com/coreos/go-systemd v0.0.0-20180828140353-eee3db372b31 // indirect
github.com/coreos/pkg v0.0.0-20180108230652-97fdf19511ea // indirect
Expand Down Expand Up @@ -66,6 +65,8 @@ require (
github.com/tmc/grpc-websocket-proxy v0.0.0-20171017195756-830351dc03c6 // indirect
github.com/ugorji/go/codec v0.0.0-20180831062425-e253f1f20942 // indirect
github.com/xiang90/probing v0.0.0-20160813154853-07dd2e8dfe18 // indirect
go.etcd.io/bbolt v1.3.1-coreos.6 // indirect
go.etcd.io/etcd v3.3.9+incompatible
go.opencensus.io v0.12.0
golang.org/x/crypto v0.0.0-20180718160520-a2144134853f
golang.org/x/net v0.0.0-20180702212446-ed29d75add3d
Expand Down
3 changes: 3 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,9 @@ github.com/ugorji/go/codec v0.0.0-20180831062425-e253f1f20942 h1:CZORS/4d6i+5FKS
github.com/ugorji/go/codec v0.0.0-20180831062425-e253f1f20942/go.mod h1:VFNgLljTbGfSG7qAOspJ7OScBnGdDN/yBr0sguwnwf0=
github.com/xiang90/probing v0.0.0-20160813154853-07dd2e8dfe18 h1:MPPkRncZLN9Kh4MEFmbnK4h3BD7AUmskWv2+EeZJCCs=
github.com/xiang90/probing v0.0.0-20160813154853-07dd2e8dfe18/go.mod h1:UETIi67q53MR2AWcXfiuqkDkRtnGDLqkBTpCHuJHxtU=
go.etcd.io/bbolt v1.3.1-coreos.6/go.mod h1:IbVyRI1SCnLcuJnV2u8VeU0CEYM7e686BmAb1XKL+uU=
go.etcd.io/etcd v3.3.9+incompatible h1:yzHYlXnJjDaxeML8LSwbI7oCEJl5enW+UHw7XJQbW0A=
go.etcd.io/etcd v3.3.9+incompatible/go.mod h1:yaeTdrJi5lOmYerz05bd8+V7KubZs8YSFZfzsF9A6aI=
go.opencensus.io v0.12.0 h1:b4qzedsGI32kquU8ld+R0Wo3Rkk5BYtTk0NJCWlrS5I=
go.opencensus.io v0.12.0/go.mod h1:UffZAU+4sDEINUGP/B7UfBBkq4fqLu9zXAX7ke6CHW0=
golang.org/x/crypto v0.0.0-20180718160520-a2144134853f h1:lRy+hhwk7YT7MsKejxuz0C5Q1gk6p/QoPQYEmKmGFb8=
Expand Down
2 changes: 1 addition & 1 deletion runtimevar/etcdvar/etcdvar.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ import (
"fmt"
"time"

"github.com/coreos/etcd/clientv3"
"github.com/google/go-cloud/runtimevar"
"github.com/google/go-cloud/runtimevar/driver"
"go.etcd.io/etcd/clientv3"
)

// New constructs a runtimevar.Variable object that uses client to watch
Expand Down
4 changes: 2 additions & 2 deletions runtimevar/etcdvar/etcdvar_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ import (
"context"
"testing"

"github.com/coreos/etcd/clientv3"
"github.com/coreos/etcd/embed"
"github.com/google/go-cloud/runtimevar"
"github.com/google/go-cloud/runtimevar/drivertest"
"go.etcd.io/etcd/clientv3"
"go.etcd.io/etcd/embed"
)

var (
Expand Down

0 comments on commit 8f75fa9

Please sign in to comment.