Skip to content

Commit

Permalink
fix ci alpn thing
Browse files Browse the repository at this point in the history
  • Loading branch information
harshil-goel committed Nov 13, 2024
1 parent e5ad869 commit 1f064ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion testutil/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ func DgraphClientWithCerts(serviceAddr string, conf *viper.Viper) (*dgo.Dgraph,
} else {
dialOpts = append(dialOpts, grpc.WithTransportCredentials(insecure.NewCredentials()))
}
conn, err := grpc.Dial(serviceAddr, dialOpts...)
conn, err := grpc.NewClient(serviceAddr, dialOpts...)
if err != nil {
return nil, err
}
Expand Down

0 comments on commit 1f064ba

Please sign in to comment.