From e468136a6454db142880e07f9d10dd04e90c19f3 Mon Sep 17 00:00:00 2001 From: Dave Syer Date: Tue, 25 Mar 2025 17:01:19 +0000 Subject: [PATCH] Remove redundant address configuration --- .../grpc/sample/GrpcServerApplicationTests.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/samples/grpc-reactive/src/test/java/org/springframework/grpc/sample/GrpcServerApplicationTests.java b/samples/grpc-reactive/src/test/java/org/springframework/grpc/sample/GrpcServerApplicationTests.java index 589797e..afcf418 100644 --- a/samples/grpc-reactive/src/test/java/org/springframework/grpc/sample/GrpcServerApplicationTests.java +++ b/samples/grpc-reactive/src/test/java/org/springframework/grpc/sample/GrpcServerApplicationTests.java @@ -47,8 +47,7 @@ public class GrpcServerApplicationTests { } @TestConfiguration - @EnableGrpcClients(@GrpcClient(target = "0.0.0.0:${local.grpc.port:9090}", - types = ReactorSimpleGrpc.ReactorSimpleStub.class)) + @EnableGrpcClients(@GrpcClient(types = ReactorSimpleGrpc.ReactorSimpleStub.class)) static class ExtraConfiguration { }