You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@camel.apache.org by "PhilippJ (JIRA)" <ji...@apache.org> on 2013/03/04 17:29:12 UTC

[jira] [Updated] (CAMEL-6127) Its impossible to inject a custom InflightRepository due to a copy-and-paste bug

     [ https://issues.apache.org/jira/browse/CAMEL-6127?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

PhilippJ updated CAMEL-6127:
----------------------------

    Description: 
We wanted to inject/autwire (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)"


  was:
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)"


    
> 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/autwire (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