mirror of https://github.com/apache/activemq.git
Fixes CAMEL-10226: camel-jms ignores connection pool settings in spring-boot deployment.
This commit is contained in:
parent
50dc5864fd
commit
4437393aa1
|
@ -299,10 +299,11 @@ public class ActiveMQComponent extends JmsComponent implements EndpointCompleter
|
|||
}
|
||||
|
||||
/**
|
||||
* We don't want to ever auto-wire the connection factory from the spring app context.
|
||||
* We don't want to ever auto-wire the connection factory from the spring app context (requires Camel 2.18 onwards)
|
||||
*
|
||||
* @return false
|
||||
*/
|
||||
public boolean getAllowAutoWiredConnectionFactory() {
|
||||
public boolean isAllowAutoWiredConnectionFactory() {
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue