File tree Expand file tree Collapse file tree 2 files changed +5
-7
lines changed
extensions/opentelemetry/runtime/src/main/java/io/quarkus/opentelemetry/runtime/tracing/intrumentation/grpc Expand file tree Collapse file tree 2 files changed +5
-7
lines changed Original file line number Diff line number Diff line change 6
6
import java .net .SocketAddress ;
7
7
import java .util .Collections ;
8
8
9
- import javax .annotation .Nullable ;
10
-
11
9
import jakarta .inject .Singleton ;
12
10
13
11
import io .grpc .ForwardingServerCall .SimpleForwardingServerCall ;
@@ -88,14 +86,14 @@ public Integer getServerPort(GrpcRequest grpcRequest) {
88
86
89
87
@ Override
90
88
public InetSocketAddress getNetworkLocalInetSocketAddress (
91
- GrpcRequest grpcRequest , @ Nullable Status status ) {
89
+ GrpcRequest grpcRequest , Status status ) {
92
90
// TODO: later version introduces TRANSPORT_ATTR_LOCAL_ADDR, might be a good idea to use it
93
91
return null ;
94
92
}
95
93
96
94
@ Override
97
95
public InetSocketAddress getNetworkPeerInetSocketAddress (
98
- GrpcRequest request , @ Nullable Status status ) {
96
+ GrpcRequest request , Status status ) {
99
97
SocketAddress address = request .getPeerSocketAddress ();
100
98
if (address instanceof InetSocketAddress ) {
101
99
return (InetSocketAddress ) address ;
Original file line number Diff line number Diff line change 81
81
<hibernate-search .version>7.2.3.Final</hibernate-search .version>
82
82
83
83
<!-- Make sure to check compatibility between these 2 gRPC components before upgrade -->
84
- <grpc .version>1.69.1 </grpc .version> <!-- when updating, verify if com.google.auth should not be updated too -->
84
+ <grpc .version>1.71.0 </grpc .version> <!-- when updating, verify if com.google.auth should not be updated too -->
85
85
<grpc-jprotoc .version>1.2.2</grpc-jprotoc .version>
86
- <protoc .version>3.25.5 </protoc .version>
86
+ <protoc .version>4.30.2 </protoc .version>
87
87
<protobuf-java .version>${protoc.version} </protobuf-java .version>
88
- <protobuf-kotlin .version>4.29.3 </protobuf-kotlin .version>
88
+ <protobuf-kotlin .version>${protobuf-java.version} </protobuf-kotlin .version>
89
89
<proto-google-common-protos .version>2.54.1</proto-google-common-protos .version>
90
90
91
91
<!-- Used in the build parent and test BOM (for the junit 5 plugin) and in the BOM (for the API) -->
You can’t perform that action at this time.
0 commit comments