|
@@ -64,8 +64,10 @@ public class JobDetailQueryServiceImpl extends AbstractService implements IJobDe
|
|
|
}
|
|
}
|
|
|
Set<JobKey> set = scheduler.getJobKeys(matcher);
|
|
Set<JobKey> set = scheduler.getJobKeys(matcher);
|
|
|
for (JobKey jobKey : set) {
|
|
for (JobKey jobKey : set) {
|
|
|
- JobDetail detail = scheduler.getJobDetail(jobKey);
|
|
|
|
|
- list.add(detail);
|
|
|
|
|
|
|
+ try {
|
|
|
|
|
+ JobDetail detail = scheduler.getJobDetail(jobKey);
|
|
|
|
|
+ list.add(detail);
|
|
|
|
|
+ }catch (Exception e){}
|
|
|
}
|
|
}
|
|
|
return list;
|
|
return list;
|
|
|
}
|
|
}
|