ppalaga commented on a change in pull request #704: Ensure that catalog files are added to the native image URL: https://github.com/apache/camel-quarkus/pull/704#discussion_r378123185
########## File path: extensions/core/runtime/src/main/java/org/apache/camel/quarkus/core/CamelConfig.java ########## @@ -174,4 +180,48 @@ public Optional<List<String>> includePatterns; } + @ConfigGroup + public static class RuntimeCatalogConfig { + /** + * Enable {@link CamelRuntimeCatalog} functionaries. + */ + @ConfigItem(defaultValue = "true") + public boolean enabled; + + /** + * Used to control the resolution of components catalog info. Review comment: Is "resolution" really what this does? Would not "inclusion" suit better? Again, it may be unclear to the reader, what is catalog. Maybe a link to a Camel docs page explaining the concept would be nice. The description should give me a hint why/when should I care, why would I ever need this to be true? This also applies to all other options in this file. ---------------------------------------------------------------- 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 With regards, Apache Git Services