Skip to content

Commit

Permalink
Update QuartzAdaptor.java
Browse files Browse the repository at this point in the history
The instance name was being set twice.
  • Loading branch information
chhil committed May 24, 2018
1 parent 28a88c7 commit eb31ff6
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,6 @@ private Scheduler createScheduler() throws SchedulerException {
p.setProperty("org.quartz.scheduler.rmi.export", "false");
p.setProperty("org.quartz.jobStore.misfireThreshold", "60000");
p.setProperty("org.quartz.threadPool.threadCount", "10");
p.setProperty("org.quartz.scheduler.instanceName", getName());
p.setProperty("org.quartz.scheduler.wrapJobExecutionInUserTransaction", "false");
p.setProperty("org.quartz.threadPool.class", "org.quartz.simpl.SimpleThreadPool");
p.setProperty("org.quartz.jobStore.class", "org.quartz.simpl.RAMJobStore");
Expand Down

0 comments on commit eb31ff6

Please sign in to comment.