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 21c230f CAMEL-13792 - Rename components to default names, Camel-quartz2 to camel-quartz 21c230f is described below commit 21c230f3b011383f77da2ddad83470155ba4f2a5 Author: Claus Ibsen <claus.ib...@gmail.com> AuthorDate: Wed Aug 7 08:09:17 2019 +0200 CAMEL-13792 - Rename components to default names, Camel-quartz2 to camel-quartz --- .../pollconsumer/quartz2/FileConsumerQuartzSchedulerRestartTest.java | 2 +- .../camel/pollconsumer/quartz2/FileConsumerQuartzSchedulerTest.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/components/camel-quartz/src/test/java/org/apache/camel/pollconsumer/quartz2/FileConsumerQuartzSchedulerRestartTest.java b/components/camel-quartz/src/test/java/org/apache/camel/pollconsumer/quartz2/FileConsumerQuartzSchedulerRestartTest.java index d99ab00..5778a5b 100644 --- a/components/camel-quartz/src/test/java/org/apache/camel/pollconsumer/quartz2/FileConsumerQuartzSchedulerRestartTest.java +++ b/components/camel-quartz/src/test/java/org/apache/camel/pollconsumer/quartz2/FileConsumerQuartzSchedulerRestartTest.java @@ -51,7 +51,7 @@ public class FileConsumerQuartzSchedulerRestartTest extends CamelTestSupport { return new RouteBuilder() { @Override public void configure() throws Exception { - from("file:target/file/quartz?scheduler=quartz2&scheduler.cron=0/2+*+*+*+*+?&scheduler.triggerGroup=myGroup&scheduler.triggerId=myId") + from("file:target/file/quartz?scheduler=quartz&scheduler.cron=0/2+*+*+*+*+?&scheduler.triggerGroup=myGroup&scheduler.triggerId=myId") .routeId("foo").noAutoStartup() .to("mock:result"); } diff --git a/components/camel-quartz/src/test/java/org/apache/camel/pollconsumer/quartz2/FileConsumerQuartzSchedulerTest.java b/components/camel-quartz/src/test/java/org/apache/camel/pollconsumer/quartz2/FileConsumerQuartzSchedulerTest.java index 93dd2a0..7c781d8 100644 --- a/components/camel-quartz/src/test/java/org/apache/camel/pollconsumer/quartz2/FileConsumerQuartzSchedulerTest.java +++ b/components/camel-quartz/src/test/java/org/apache/camel/pollconsumer/quartz2/FileConsumerQuartzSchedulerTest.java @@ -46,7 +46,7 @@ public class FileConsumerQuartzSchedulerTest extends CamelTestSupport { return new RouteBuilder() { @Override public void configure() throws Exception { - from("file:target/file/quartz?scheduler=quartz2&scheduler.cron=0/2+*+*+*+*+?").routeId("foo").noAutoStartup() + from("file:target/file/quartz?scheduler=quartz&scheduler.cron=0/2+*+*+*+*+?").routeId("foo").noAutoStartup() .to("mock:result"); } };