jamesnetherton commented on issue #4063: URL: https://github.com/apache/camel-quarkus/issues/4063#issuecomment-1235220912
I think this change explains why the bean lookup fails: https://github.com/quarkusio/quarkus/commit/60f62f7283a62fe28d9282be78cec97ff2866120 To resolve a named `DataSource` bean, we'd now need to provide the appropriate `Qualifier`. ``` Arc.container() .beanManager() .getBeans(DataSource.class, new io.quarkus.agroal.DataSource.DataSourceLiteral("camel-ds")) ``` Since we don't want `camel-quarkus-core` to depend on Agroal, we need some way for extensions to register a means of resolving the relevant `Qualifier` for the corresponding bean type. -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
