From 47d62db5aa3d7ede910910239eef612c5724ef77 Mon Sep 17 00:00:00 2001 From: Dave Protasowski Date: Mon, 13 Jan 2025 13:44:00 -0500 Subject: [PATCH] fix grpc dialing (#1036) --- test/conformance/ingress/grpc.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/conformance/ingress/grpc.go b/test/conformance/ingress/grpc.go index 4f0b51cc..823cadea 100644 --- a/test/conformance/ingress/grpc.go +++ b/test/conformance/ingress/grpc.go @@ -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) @@ -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)