jamesnetherton commented on issue #6780:
URL: https://github.com/apache/camel-quarkus/issues/6780#issuecomment-2473924097

   I think the problem is with some of the shaded bits in 
`org.apache.kafka:kafka-clients`.
   
   `ProtoUtils` in `io.grpc:grpc-protobuf` has the following signature:
   
   ```
   public static <T extends Message> Marshaller<T> marshaller(final T 
defaultInstance)
   ````
   
   And it's invoked from shaded OpenTelemetry `TraceServiceGrpc` like this:
   
   ```
   ProtoUtils.marshaller(ExportTraceServiceRequest.getDefaultInstance())
   ```
   
   Shaded OpenTelemetry `ExportTraceServiceRequest` is an implementation of 
`org.apache.kafka.shaded.com.google.protobuf.Message` not 
`com.google.protobuf.Message` expected by `ProtoUtils`. Hence the native 
compiler complains that it cannot find the associated method.
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to