Upgrade grpc-java to 1.69.0

This commit is contained in:
Dave Syer
2025-01-06 16:30:51 +00:00
parent e0a744ba25
commit bca2eff2b0
6 changed files with 7 additions and 6 deletions

View File

@@ -8,6 +8,7 @@ import org.springframework.context.annotation.Bean;
import io.grpc.BindableService;
import io.grpc.protobuf.services.ProtoReflectionService;
import io.grpc.protobuf.services.ProtoReflectionServiceV1;
/**
* {@link EnableAutoConfiguration Auto-configuration} for gRPC Reflection service
@@ -24,7 +25,7 @@ public class GrpcServerReflectionAutoConfiguration {
@Bean
public BindableService serverReflection() {
return ProtoReflectionService.newInstance();
return ProtoReflectionServiceV1.newInstance();
}
}