lburgazzoli commented on code in PR #1097:
URL: 
https://github.com/apache/camel-spring-boot/pull/1097#discussion_r1511402167


##########
core/camel-spring-boot-xml/src/main/java/org/apache/camel/spring/boot/xml/SpringBootXmlCamelContextConfigurer.java:
##########
@@ -47,6 +45,8 @@ public void configure(ApplicationContext applicationContext, 
SpringCamelContext
             // spring boot is not capable at this phase to use an injector 
that is creating beans
             // via spring-boot itself, so use a default injector instead
             camelContext.setInjector(new DefaultInjector(camelContext));
+
+            // TODO: not sure how this works TBH

Review Comment:
   done



##########
core/camel-spring-boot/src/main/java/org/apache/camel/spring/boot/CamelAutoConfiguration.java:
##########
@@ -95,11 +95,14 @@ public class CamelAutoConfiguration {
     @ConditionalOnMissingBean(CamelContext.class)
     CamelContext camelContext(ApplicationContext applicationContext,
                               CamelConfigurationProperties config,
-                              CamelBeanPostProcessor beanPostProcessor) throws 
Exception {
+                              CamelBeanPostProcessor beanPostProcessor,
+                              List<CamelContextCustomizer> contextCustomizers) 
throws Exception {

Review Comment:
   done



-- 
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: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to