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.git


The following commit(s) were added to refs/heads/main by this push:
     new 9475bd5bd45 Regen for commit 1cb54635595de85f30e0df6c9a71a7c849abff83 
(#8069)
9475bd5bd45 is described below

commit 9475bd5bd45f1d5f57ed528714f5649f91a801f5
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Fri Jul 29 06:23:55 2022 +0200

    Regen for commit 1cb54635595de85f30e0df6c9a71a7c849abff83 (#8069)
    
    Signed-off-by: GitHub <nore...@github.com>
    
    Co-authored-by: davsclaus <davscl...@users.noreply.github.com>
---
 .../org/apache/camel/component/quartz/QuartzComponent.java  | 10 +++++-----
 .../org/apache/camel/component/quartz/QuartzEndpoint.java   | 13 +++++++------
 2 files changed, 12 insertions(+), 11 deletions(-)

diff --git 
a/components/camel-quartz/src/main/java/org/apache/camel/component/quartz/QuartzComponent.java
 
b/components/camel-quartz/src/main/java/org/apache/camel/component/quartz/QuartzComponent.java
index ecb10388671..a9ae00ca267 100644
--- 
a/components/camel-quartz/src/main/java/org/apache/camel/component/quartz/QuartzComponent.java
+++ 
b/components/camel-quartz/src/main/java/org/apache/camel/component/quartz/QuartzComponent.java
@@ -197,12 +197,12 @@ public class QuartzComponent extends DefaultComponent 
implements ExtendedStartup
     }
 
     /**
-     * Whether to ignore quartz cannot schedule a trigger because the trigger 
will never fire in the future.
-     * This can happen when using a cron trigger that are configured to only 
run in the past.
+     * Whether to ignore quartz cannot schedule a trigger because the trigger 
will never fire in the future. This can
+     * happen when using a cron trigger that are configured to only run in the 
past.
      *
-     * By default, Quartz will fail to schedule the trigger and therefore fail 
to start the Camel route.
-     * You can set this to true which then logs a WARN and then ignore the 
problem, meaning that the route
-     * will never fire in the future.
+     * By default, Quartz will fail to schedule the trigger and therefore fail 
to start the Camel route. You can set
+     * this to true which then logs a WARN and then ignore the problem, 
meaning that the route will never fire in the
+     * future.
      */
     public void setIgnoreExpiredNextFireTime(boolean 
ignoreExpiredNextFireTime) {
         this.ignoreExpiredNextFireTime = ignoreExpiredNextFireTime;
diff --git 
a/components/camel-quartz/src/main/java/org/apache/camel/component/quartz/QuartzEndpoint.java
 
b/components/camel-quartz/src/main/java/org/apache/camel/component/quartz/QuartzEndpoint.java
index d2d38d06fa0..1f905afa12f 100644
--- 
a/components/camel-quartz/src/main/java/org/apache/camel/component/quartz/QuartzEndpoint.java
+++ 
b/components/camel-quartz/src/main/java/org/apache/camel/component/quartz/QuartzEndpoint.java
@@ -137,12 +137,12 @@ public class QuartzEndpoint extends DefaultEndpoint {
     }
 
     /**
-     * Whether to ignore quartz cannot schedule a trigger because the trigger 
will never fire in the future.
-     * This can happen when using a cron trigger that are configured to only 
run in the past.
+     * Whether to ignore quartz cannot schedule a trigger because the trigger 
will never fire in the future. This can
+     * happen when using a cron trigger that are configured to only run in the 
past.
      *
-     * By default, Quartz will fail to schedule the trigger and therefore fail 
to start the Camel route.
-     * You can set this to true which then logs a WARN and then ignore the 
problem, meaning that the route
-     * will never fire in the future.
+     * By default, Quartz will fail to schedule the trigger and therefore fail 
to start the Camel route. You can set
+     * this to true which then logs a WARN and then ignore the problem, 
meaning that the route will never fire in the
+     * future.
      */
     public void setIgnoreExpiredNextFireTime(boolean 
ignoreExpiredNextFireTime) {
         this.ignoreExpiredNextFireTime = ignoreExpiredNextFireTime;
@@ -391,7 +391,8 @@ public class QuartzEndpoint extends DefaultEndpoint {
                 Date ft = ot.computeFirstFireTime(cal);
                 if (ft == null && ignoreExpiredNextFireTime) {
                     scheduled = false;
-                    LOG.warn("Job {} (cron={}, triggerType={}, jobClass={}) 
not scheduled, because it will never fire in the future",
+                    LOG.warn(
+                            "Job {} (cron={}, triggerType={}, jobClass={}) not 
scheduled, because it will never fire in the future",
                             trigger.getKey(), cron, 
trigger.getClass().getSimpleName(),
                             jobDetail.getJobClass().getSimpleName());
                 } else {

Reply via email to