This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-examples.git
The following commit(s) were added to refs/heads/main by this push: new 1a6e9de CAMEL-17440: camel-quartz - Remove startDelayed option as it does not work properly and causes problems. 1a6e9de is described below commit 1a6e9deae5c554c1eaa385e807119e9a584abb90 Author: Claus Ibsen <claus.ib...@gmail.com> AuthorDate: Thu Jan 6 09:44:37 2022 +0100 CAMEL-17440: camel-quartz - Remove startDelayed option as it does not work properly and causes problems. --- examples/main-lambda/src/main/resources/application.properties | 4 ---- examples/main-xml/src/main/resources/application.properties | 4 ---- examples/main-yaml/src/main/resources/application.properties | 4 ---- examples/main/src/main/resources/application.properties | 4 ---- 4 files changed, 16 deletions(-) diff --git a/examples/main-lambda/src/main/resources/application.properties b/examples/main-lambda/src/main/resources/application.properties index 4da5cc9..6781126 100644 --- a/examples/main-lambda/src/main/resources/application.properties +++ b/examples/main-lambda/src/main/resources/application.properties @@ -23,10 +23,6 @@ camel.main.name = MyCoolCamel camel.main.bean-introspection-extended-statistics=true camel.main.bean-introspection-logging-level=INFO -# to configure the camel quartz component -# here we can configure the options on the component level (and we can use dash-naming-style) -camel.component.quartz.start-delayed-seconds = 3 - # properties used in the route myCron = 0/2 * * * * ? diff --git a/examples/main-xml/src/main/resources/application.properties b/examples/main-xml/src/main/resources/application.properties index ee9f831..dcbef5d 100644 --- a/examples/main-xml/src/main/resources/application.properties +++ b/examples/main-xml/src/main/resources/application.properties @@ -29,10 +29,6 @@ camel.main.routes-reload-directory = src/main/resources # pattern(s) for files to watch camel.main.routes-reload-pattern = routes/*.xml -# to configure the camel quartz component -# here we can configure the options on the component level (and we can use dash-naming-style) -camel.component.quartz.start-delayed-seconds = 3 - # properties used in the route myCron = 0/2 * * * * ? diff --git a/examples/main-yaml/src/main/resources/application.properties b/examples/main-yaml/src/main/resources/application.properties index b654e10..3d66ad8 100644 --- a/examples/main-yaml/src/main/resources/application.properties +++ b/examples/main-yaml/src/main/resources/application.properties @@ -28,10 +28,6 @@ camel.main.routes-reload-pattern = routes/*.yaml # on reload should all existing routes be removed first camel.main.routes-reload-remove-all-routes = true -# to configure the camel quartz component -# here we can configure the options on the component level (and we can use dash-naming-style) -camel.component.quartz.start-delayed-seconds = 3 - # properties used in the route myCron = 0/2 * * * * ? diff --git a/examples/main/src/main/resources/application.properties b/examples/main/src/main/resources/application.properties index ac155bd..f47ae27 100644 --- a/examples/main/src/main/resources/application.properties +++ b/examples/main/src/main/resources/application.properties @@ -37,10 +37,6 @@ camel.main.bean-introspection-logging-level=INFO # load additional property placeholders from this folder camel.main.file-configurations=src/main/data/*.properties -# to configure the camel quartz component -# here we can configure the options on the component level (and we can use dash-naming-style) -camel.component.quartz.start-delayed-seconds = 3 - # to configure Hystrix EIP (global and you need to add camel-hystrix to the classpath) ### camel.hystrix.group-key=myGroup ### camel.hystrix.execution-timeout-in-milliseconds=5000