This is an automated email from the ASF dual-hosted git repository.

jamesnetherton pushed a commit to branch camel-quarkus-main
in repository https://gitbox.apache.org/repos/asf/camel-quarkus-examples.git


The following commit(s) were added to refs/heads/camel-quarkus-main by this 
push:
     new d6dd5aa  Update of the bootstrap properties because of CAMEL-20243
d6dd5aa is described below

commit d6dd5aa0e96cbc79f87b1a1df497ec6ba2a40a12
Author: JiriOndrusek <ondrusek.j...@gmail.com>
AuthorDate: Fri Jan 5 12:45:45 2024 +0100

    Update of the bootstrap properties because of CAMEL-20243
---
 health/src/main/resources/application.properties | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/health/src/main/resources/application.properties 
b/health/src/main/resources/application.properties
index 8ef2f86..b317b68 100644
--- a/health/src/main/resources/application.properties
+++ b/health/src/main/resources/application.properties
@@ -28,16 +28,16 @@ camel.main.bean-introspection-extended-statistics=true
 camel.main.bean-introspection-logging-level=INFO
 
 # enable supervised route controller which will startup routes in safe manner
-camel.main.route-controller-supervise-enabled = true
+camel.routeController.enabled = true
 # attempt up till 10 times to start a route (and exhaust if still failing)
 # when a route is exhausted then its taken out as being supervised and
 # will not take part of health-check either (UNKNOWN state)
-camel.main.route-controller-back-off-max-attempts = 10
+camel.routeController.back-off-max-attempts = 10
 # when starting a route (and restarts) fails all attempts
 # then we can control whether the route should be influence the health-check
 # and report the route as either UNKNOWN or DOWN. Setting this option to true
 # will report it as DOWN otherwise its UNKNOWN
-#camel.main.route-controller-unhealthy-on-exhausted = true
+#camel.routeController.unhealthy-on-exhausted = true
 
 # enable health check (is automatic enabled if discovered on classpath)
 # global flag to enable/disable

Reply via email to