mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-30 03:38:26 -07:00
ScheduledTasks won't run immediately after first start
This commit is contained in:
parent
f9b0b2206c
commit
16dd5b621e
1 changed files with 6 additions and 1 deletions
|
@ -57,7 +57,7 @@ namespace NzbDrone.Core.Jobs
|
||||||
new ScheduledTask{ Interval = 24*60, TypeName = typeof(HousekeepingCommand).FullName},
|
new ScheduledTask{ Interval = 24*60, TypeName = typeof(HousekeepingCommand).FullName},
|
||||||
};
|
};
|
||||||
|
|
||||||
var currentTasks = _scheduledTaskRepository.All();
|
var currentTasks = _scheduledTaskRepository.All().ToList();
|
||||||
|
|
||||||
_logger.Debug("Initializing jobs. Available: {0} Existing:{1}", defaultTasks.Count(), currentTasks.Count());
|
_logger.Debug("Initializing jobs. Available: {0} Existing:{1}", defaultTasks.Count(), currentTasks.Count());
|
||||||
|
|
||||||
|
@ -76,6 +76,11 @@ namespace NzbDrone.Core.Jobs
|
||||||
|
|
||||||
currentDefinition.Interval = defaultTask.Interval;
|
currentDefinition.Interval = defaultTask.Interval;
|
||||||
|
|
||||||
|
if (currentDefinition.Id == 0)
|
||||||
|
{
|
||||||
|
currentDefinition.LastExecution = DateTime.UtcNow;
|
||||||
|
}
|
||||||
|
|
||||||
_scheduledTaskRepository.Upsert(currentDefinition);
|
_scheduledTaskRepository.Upsert(currentDefinition);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue