[ 
https://issues.apache.org/jira/browse/CAMEL-4900?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Bryan Keller updated CAMEL-4900:
--------------------------------

    Attachment: quartztest.zip

Here is a simple app that demonstrates the problem. It uses gradle (v1.0m7). 
Unzip and run "gradle runClean". This will run with a fresh database. Then run 
"gradle run" to run with the existing database. The exception will be thrown.
                
> Quartz component doesn't start with a persistent scheduler
> ----------------------------------------------------------
>
>                 Key: CAMEL-4900
>                 URL: https://issues.apache.org/jira/browse/CAMEL-4900
>             Project: Camel
>          Issue Type: Bug
>          Components: camel-quartz
>    Affects Versions: 2.9.0
>         Environment: Java 1.6.0_29 64-bit, Mac OS X 10.7 and CentOS 6
>            Reporter: Bryan Keller
>         Attachments: quartztest.zip, quartztest.zip
>
>
> I have scheduler persistence on but clustering is not turned on. When 
> starting my app the first time, it starts OK. After shutting down and staring 
> a second time, an exception is thrown and the app doesn't start up. This did 
> not occur in 2.8.3. The following exception occurs:
> Caused by: org.quartz.SchedulerException: Trigger's related Job's name cannot 
> be null
>       at org.quartz.Trigger.validate(Trigger.java:955) ~[quartz-1.8.5.jar:na]
>       at 
> org.quartz.core.QuartzScheduler.rescheduleJob(QuartzScheduler.java:982) 
> ~[quartz-1.8.5.jar:na]
>       at org.quartz.impl.StdScheduler.rescheduleJob(StdScheduler.java:302) 
> ~[quartz-1.8.5.jar:na]
>       at 
> org.apache.camel.component.quartz.QuartzComponent.doAddJob(QuartzComponent.java:233)
>  ~[camel-quartz-2.9.0.jar:2.9.0]
> In 2.9.0, the code was changed here and this is where it craashes:
> {code}
> if (!isClustered()) {
>     trigger.setStartTime(Calendar.getInstance().getTime());
>     scheduler.rescheduleJob(trigger.getName(), trigger.getGroup(), trigger);
> }
> {code}
> My component definition looks like this:
> {code}
> <endpoint id="myschedule" 
> uri="quartz://fmc/mycron=${myschedule.cron}&amp;stateful=true" />
> {code}
> Again, this affects 2.9.0 but not 2.8.3. I have not found a workaround yet.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to