You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by GitBox <gi...@apache.org> on 2019/11/13 07:27:35 UTC

[GitHub] [camel-quarkus] ppalaga commented on a change in pull request #405: core: avoid referencing application classes in bean build items and loading them in core build processors

ppalaga commented on a change in pull request #405: core: avoid referencing application classes in bean build items and loading them in core build processors
URL: https://github.com/apache/camel-quarkus/pull/405#discussion_r345600596
 
 

 ##########
 File path: extensions/opentracing/deployment/src/main/java/org/apache/camel/quarkus/component/opentracing/deployment/OpenTracingProcessor.java
 ##########
 @@ -47,7 +48,9 @@ void process(BuildProducer<NativeImageResourceBuildItem> resource) {
     CamelBeanBuildItem setupCamelOpenTracingTracer(CamelOpenTracingConfig config, CamelOpenTracingRecorder recorder,
             BeanContainerBuildItem beanContainer) {
         // Configure & bind OpenTracingTracer to the registry so that Camel can use it
-        return new CamelBeanBuildItem("tracer", Tracer.class,
+        return new CamelBeanBuildItem(
+                "tracer",
+                Tracer.class.getName(),
 
 Review comment:
   DotName

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services