Skip to content

Commit

Permalink
fix grpc dialing (#1036)
Browse files Browse the repository at this point in the history
  • Loading branch information
dprotaso authored Jan 13, 2025
1 parent 9d4838b commit 47d62db
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/conformance/ingress/grpc.go
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ func TestGRPC(t *testing.T) {
})

conn, err := grpc.NewClient(
domain+":80",
"passthrough:///"+domain+":80",
grpc.WithTransportCredentials(insecure.NewCredentials()),
grpc.WithContextDialer(func(ctx context.Context, addr string) (net.Conn, error) {
return dialCtx(ctx, "unused", addr)
Expand Down Expand Up @@ -134,7 +134,7 @@ func TestGRPCSplit(t *testing.T) {
})

conn, err := grpc.NewClient(
domain+":80",
"passthrough:///"+domain+":80",
grpc.WithTransportCredentials(insecure.NewCredentials()),
grpc.WithContextDialer(func(ctx context.Context, addr string) (net.Conn, error) {
return dialCtx(ctx, "unused", addr)
Expand Down

0 comments on commit 47d62db

Please sign in to comment.