This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/master by this push: new 3ab0ed9 Regen 3ab0ed9 is described below commit 3ab0ed97bc6e276e8cf5a8bdfe251a0529761327 Author: Claus Ibsen <claus.ib...@gmail.com> AuthorDate: Sun May 31 14:03:50 2020 +0200 Regen --- .../resources/META-INF/camel-main-configuration-metadata.json | 4 ++-- .../java/org/apache/camel/main/DefaultConfigurationProperties.java | 6 ++++++ 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/core/camel-main/src/generated/resources/META-INF/camel-main-configuration-metadata.json b/core/camel-main/src/generated/resources/META-INF/camel-main-configuration-metadata.json index fea5222..18e5d9b 100644 --- a/core/camel-main/src/generated/resources/META-INF/camel-main-configuration-metadata.json +++ b/core/camel-main/src/generated/resources/META-INF/camel-main-configuration-metadata.json @@ -33,8 +33,8 @@ { "name": "camel.main.endpointLazyStartProducer", "description": "Whether the producer should be started lazy (on the first message). By starting lazy you can use this to allow CamelContext and routes to startup in situations where a producer may otherwise fail during starting and cause the route to fail being started. By deferring this startup to be lazy then the startup failure can be handled during routing messages via Camel's routing error handlers. Beware that when the first mes [...] { "name": "camel.main.endpointRuntimeStatisticsEnabled", "description": "Sets whether endpoint runtime statistics is enabled (gathers runtime usage of each incoming and outgoing endpoints). The default value is false.", "sourceType": "org.apache.camel.main.DefaultConfigurationProperties", "type": "boolean", "javaType": "boolean" }, { "name": "camel.main.fileConfigurations", "description": "Directory to load additional configuration files that contains configuration values that takes precedence over any other configuration. This can be used to refer to files that may have secret configuration that has been mounted on the file system for containers. You can specify a pattern to load from sub directories and a name pattern such as \/var\/app\/secret\/.properties, multiple directories can be separated by comma.", " [...] - { "name": "camel.main.healthCheckEnabled", "description": "Whether health check is enabled. Is default enabled.", "sourceType": "org.apache.camel.main.DefaultConfigurationProperties", "type": "boolean", "javaType": "boolean", "defaultValue": true }, - { "name": "camel.main.healthCheckRoutesEnabled", "description": "Whether routes should be included in the health check. By default only the camel context is part of the health check. Enabling routes allows to let routes that are controlled by the routes controller take part of the health check, so if there is problems starting up routes, then they can influence the health check and report its UP or DOWN. Is default disabled.", "sourceType": "org.apache.camel.main.DefaultConfiguration [...] + { "name": "camel.main.healthCheckEnabled", "description": "Whether health check is enabled. Is default enabled. If using camel-quarkus then camel-quarkus-microprofile-health has its own configuration for health-check which you should use instead.", "sourceType": "org.apache.camel.main.DefaultConfigurationProperties", "type": "boolean", "javaType": "boolean", "defaultValue": true }, + { "name": "camel.main.healthCheckRoutesEnabled", "description": "Whether routes should be included in the health check. By default only the camel context is part of the health check. Enabling routes allows to let routes that are controlled by the routes controller take part of the health check, so if there is problems starting up routes, then they can influence the health check and report its UP or DOWN. Is default disabled. If using camel-quarkus then camel-quarkus-microprofile-heal [...] { "name": "camel.main.inflightRepositoryBrowseEnabled", "description": "Sets whether the inflight repository should allow browsing each inflight exchange. This is by default disabled as there is a very slight performance overhead when enabled.", "sourceType": "org.apache.camel.main.DefaultConfigurationProperties", "type": "boolean", "javaType": "boolean" }, { "name": "camel.main.javaRoutesExcludePattern", "description": "Used for exclusive filtering component scanning of RouteBuilder classes with Component annotation. The exclusive filtering takes precedence over inclusive filtering. The pattern is using Ant-path style pattern. Multiple patterns can be specified separated by comma. For example to exclude all classes starting with Bar use: **\/Bar* To exclude all routes form a specific package use: com\/mycompany\/bar\/* [...] { "name": "camel.main.javaRoutesIncludePattern", "description": "Used for inclusive filtering component scanning of RouteBuilder classes with Component annotation. The exclusive filtering takes precedence over inclusive filtering. The pattern is using Ant-path style pattern. Multiple patterns can be specified separated by comma. For example to include all classes starting with Foo use: **\/Foo To include all routes form a specific package use: com\/mycompany\/foo\/* To in [...] diff --git a/core/camel-main/src/main/java/org/apache/camel/main/DefaultConfigurationProperties.java b/core/camel-main/src/main/java/org/apache/camel/main/DefaultConfigurationProperties.java index f94f49b..7bc8c37 100644 --- a/core/camel-main/src/main/java/org/apache/camel/main/DefaultConfigurationProperties.java +++ b/core/camel-main/src/main/java/org/apache/camel/main/DefaultConfigurationProperties.java @@ -1070,6 +1070,9 @@ public abstract class DefaultConfigurationProperties<T> { /** * Whether health check is enabled. * Is default enabled. + * + * If using camel-quarkus then camel-quarkus-microprofile-health has its own configuration for health-check + * which you should use instead. */ public void setHealthCheckEnabled(boolean healthCheckEnabled) { this.healthCheckEnabled = healthCheckEnabled; @@ -1088,6 +1091,9 @@ public abstract class DefaultConfigurationProperties<T> { * they can influence the health check and report its UP or DOWN. * * Is default disabled. + * + * If using camel-quarkus then camel-quarkus-microprofile-health has its own configuration for health-check + * which you should use instead. */ public void setHealthCheckRoutesEnabled(boolean healthCheckRoutesEnabled) { this.healthCheckRoutesEnabled = healthCheckRoutesEnabled;