James Netherton created CAMEL-10606:
---------------------------------------
Summary: Modify quartz2 endpoint to be a singleton
Key: CAMEL-10606
URL: https://issues.apache.org/jira/browse/CAMEL-10606
Project: Camel
Issue Type: Improvement
Components: camel-quartz2
Reporter: James Netherton
Assignee: James Netherton
Currently the quartz2 endpoint implements isSingleton() and returns false.
This causes issues if you try to do something like:
{code}
camelContext.getEndpoint("quartz2://foo?cron=5+*+*+*+*")
{code}
Which can trigger the endpoint start() method to be called and results in:
{code}
Caused by: java.lang.IllegalArgumentException: Trigger key
myGroup.longPeriodTimer is already in use by
quartz2://foo/longPeriodTimer?cron=5+*+*+*+*
at
org.apache.camel.component.quartz2.QuartzEndpoint.ensureNoDupTriggerKey(QuartzEndpoint.java:446)
at
org.apache.camel.component.quartz2.QuartzEndpoint.addJobInScheduler(QuartzEndpoint.java:380)
at
org.apache.camel.component.quartz2.QuartzEndpoint.doStart(QuartzEndpoint.java:340)
{code}
The quartz1 endpoint implements isSingleton to return true. I see no reason why
quartz2 should be any different.
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)