Skip to content

Commit 1ae51ff

Browse files
committed
fix etcd import path
1 parent 434b4da commit 1ae51ff

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

register.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ import (
1717
"strings"
1818
"time"
1919

20-
etcd3 "github.com/coreos/etcd/clientv3"
21-
"github.com/coreos/etcd/etcdserver/api/v3rpc/rpctypes"
20+
etcd3 "go.etcd.io/etcd/clientv3"
21+
"go.etcd.io/etcd/etcdserver/api/v3rpc/rpctypes"
2222
)
2323

2424
var (

resolver.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import (
1515
"fmt"
1616
"strings"
1717

18-
etcd3 "github.com/coreos/etcd/clientv3"
18+
etcd3 "go.etcd.io/etcd/clientv3"
1919
"google.golang.org/grpc/naming"
2020
)
2121

watcher.go

+1-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,7 @@ import (
1414
"context"
1515
"fmt"
1616

17-
etcd3 "github.com/coreos/etcd/clientv3"
18-
// "github.com/coreos/etcd/internal/mvcc/mvccpb"
17+
etcd3 "go.etcd.io/etcd/clientv3"
1918
"google.golang.org/grpc/naming"
2019
)
2120

0 commit comments

Comments
 (0)