mirror of
https://github.com/Radarr/Radarr
synced 2024-12-26 01:38:24 +00:00
Little JobProvider cleanup
This commit is contained in:
parent
b9dce2e82d
commit
a1e8266cd8
1 changed files with 3 additions and 4 deletions
|
@ -96,7 +96,6 @@ public virtual void Initialize()
|
|||
jobDefinition.Name = job.Name;
|
||||
|
||||
jobDefinition.Interval = Convert.ToInt32(job.DefaultInterval.TotalMinutes);
|
||||
//Todo: Need to have a way for users to change this and not have it overwritten on start-up.
|
||||
|
||||
SaveDefinition(jobDefinition);
|
||||
}
|
||||
|
@ -136,7 +135,7 @@ public virtual void QueueScheduled()
|
|||
var pendingJobTypes = All().Where(
|
||||
t => t.Enable &&
|
||||
(DateTime.Now - t.LastExecution) > TimeSpan.FromMinutes(t.Interval)
|
||||
).Select(c => _jobs.Where(t => t.GetType().ToString() == c.TypeName).Single().GetType()).ToList();
|
||||
).Select(c => _jobs.Single(t => t.GetType().ToString() == c.TypeName).GetType()).ToList();
|
||||
|
||||
|
||||
pendingJobTypes.ForEach(jobType => QueueJob(jobType, source: JobQueueItem.JobSourceType.Scheduler));
|
||||
|
@ -256,7 +255,7 @@ private void ProcessQueue()
|
|||
|
||||
private void Execute(JobQueueItem queueItem)
|
||||
{
|
||||
var jobImplementation = _jobs.Where(t => t.GetType() == queueItem.JobType).SingleOrDefault();
|
||||
var jobImplementation = _jobs.SingleOrDefault(t => t.GetType() == queueItem.JobType);
|
||||
if (jobImplementation == null)
|
||||
{
|
||||
logger.Error("Unable to locate implementation for '{0}'. Make sure it is properly registered.", queueItem.JobType);
|
||||
|
|
Loading…
Reference in a new issue