mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00
remove deprecated gRPC API usage
Signed-off-by: Chao Chen <chaochn@amazon.com>
This commit is contained in:
parent
bbf59a9f26
commit
3c6d2e972d
@ -23,6 +23,7 @@ import (
|
||||
|
||||
"github.com/stretchr/testify/assert"
|
||||
"google.golang.org/grpc"
|
||||
"google.golang.org/grpc/credentials/insecure"
|
||||
testpb "google.golang.org/grpc/interop/grpc_testing"
|
||||
|
||||
"go.etcd.io/etcd/client/v3/naming/endpoints"
|
||||
@ -75,7 +76,7 @@ func testEtcdGrpcResolver(t *testing.T, lbPolicy string) {
|
||||
}
|
||||
|
||||
// Create connection with provided lb policy
|
||||
conn, err := grpc.Dial("etcd:///foo", grpc.WithInsecure(), grpc.WithResolvers(b),
|
||||
conn, err := grpc.Dial("etcd:///foo", grpc.WithTransportCredentials(insecure.NewCredentials()), grpc.WithResolvers(b),
|
||||
grpc.WithDefaultServiceConfig(fmt.Sprintf(`{"loadBalancingPolicy":"%s"}`, lbPolicy)))
|
||||
if err != nil {
|
||||
t.Fatal("failed to connect to foo", err)
|
||||
|
Loading…
x
Reference in New Issue
Block a user