File tree Expand file tree Collapse file tree 3 files changed +27
-7
lines changed
opentelemetry/runtime/src/main/java/io/quarkus/opentelemetry/runtime/tracing/intrumentation/grpc Expand file tree Collapse file tree 3 files changed +27
-7
lines changed Original file line number Diff line number Diff line change 25
25
<dependency >
26
26
<groupId >io.vertx</groupId >
27
27
<artifactId >vertx-grpc-client</artifactId >
28
+ <exclusions >
29
+ <exclusion >
30
+ <groupId >org.codehaus.mojo</groupId >
31
+ <artifactId >animal-sniffer-annotations</artifactId >
32
+ </exclusion >
33
+ <exclusion >
34
+ <groupId >com.google.code.findbugs</groupId >
35
+ <artifactId >jsr305</artifactId >
36
+ </exclusion >
37
+ <exclusion >
38
+ <groupId >org.checkerframework</groupId >
39
+ <artifactId >checker-qual</artifactId >
40
+ </exclusion >
41
+ <exclusion >
42
+ <groupId >javax.annotation</groupId >
43
+ <artifactId >javax.annotation-api</artifactId >
44
+ </exclusion >
45
+ <exclusion >
46
+ <groupId >com.google.android</groupId >
47
+ <artifactId >annotations</artifactId >
48
+ </exclusion >
49
+ </exclusions >
28
50
</dependency >
29
51
<dependency >
30
52
<groupId >com.google.protobuf</groupId >
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 80
80
<hibernate-search .version>7.2.3.Final</hibernate-search .version>
81
81
82
82
<!-- Make sure to check compatibility between these 2 gRPC components before upgrade -->
83
- <grpc .version>1.69.1 </grpc .version> <!-- when updating, verify if com.google.auth should not be updated too -->
83
+ <grpc .version>1.71.0 </grpc .version> <!-- when updating, verify if com.google.auth should not be updated too -->
84
84
<grpc-jprotoc .version>1.2.2</grpc-jprotoc .version>
85
- <protoc .version>3.25.5 </protoc .version>
85
+ <protoc .version>4.30.2 </protoc .version>
86
86
<protobuf-java .version>${protoc.version} </protobuf-java .version>
87
- <protobuf-kotlin .version>4.29.3 </protobuf-kotlin .version>
87
+ <protobuf-kotlin .version>${protobuf-java.version} </protobuf-kotlin .version>
88
88
<proto-google-common-protos .version>2.54.1</proto-google-common-protos .version>
89
89
90
90
<!-- 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