PhilippJ created CAMEL-6127:
-------------------------------

             Summary: Its impossible to inject a custom InflightRepository due 
to a copy-and-paste bug
                 Key: CAMEL-6127
                 URL: https://issues.apache.org/jira/browse/CAMEL-6127
             Project: Camel
          Issue Type: Bug
    Affects Versions: 2.10.3
         Environment: Windows7 64bit jdk7 camel 2.10.3
            Reporter: PhilippJ


We wanted to inject/autwoire (with a Spring context.xml) a custom 
InflightRepository as described here 
http://camel.apache.org/advanced-configuration-of-camelcontext-using-spring.html
but this is not possible due to an obvious copy-and-past bug in 
org.apache.camel.core.xml.AbstractCamelContextFactoryBean.afterPropertiesSet()


Line 182

InflightRepository inflightRepository = 
getBeanForType(InflightRepository.class);
        if (delayer != null) {
            LOG.info("Using custom InflightRepository: " + inflightRepository);
            getContext().setInflightRepository(inflightRepository);
        }


is:
"if (delayer != null)" 

should be:
"if (inflightRepository!= null)"


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

Reply via email to