lburgazzoli opened a new issue #1406: URL: https://github.com/apache/camel-quarkus/issues/1406
Assuming you have a the following code from the user applications code: ```java @ApplicationScoped public class Configurations { /** * Produces a {@link LogComponent} instance with a custom exchange * formatter set-up. */ @Named LogComponent log() { DefaultExchangeFormatter formatter = new DefaultExchangeFormatter(); formatter.setShowExchangePattern(false); formatter.setShowBodyType(false); LogComponent component = new LogComponent(); component.setExchangeFormatter(formatter); return component; } } ``` This will end-up overriding the auto discovered log component bound to the registry by camel-quarkus' build steps during the augmentation phase and as we have a way to query the build context about the known beans, then we should avoid to register the auto discovered one to avoid wasting memory. ---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: us...@infra.apache.org