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
4800a7a1a4
commit
50dc5864fd
|
@ -297,4 +297,13 @@ public class ActiveMQComponent extends JmsComponent implements EndpointCompleter
|
||||||
}
|
}
|
||||||
return answer;
|
return answer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* We don't want to ever auto-wire the connection factory from the spring app context.
|
||||||
|
* @return false
|
||||||
|
*/
|
||||||
|
public boolean getAllowAutoWiredConnectionFactory() {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue