mirror of
https://github.com/Radarr/Radarr
synced 2026-02-22 06:34:23 +01:00
Don't check for updates every 30 minutes on nightly
This commit is contained in:
parent
7d31eb1f55
commit
22e9dff76b
1 changed files with 1 additions and 10 deletions
|
|
@ -61,19 +61,10 @@ public DateTime GetNextExecution(Type type)
|
|||
|
||||
public void Handle(ApplicationStartedEvent message)
|
||||
{
|
||||
int updateInterval = 6 * 60;
|
||||
|
||||
if (_configFileProvider.Branch == "nightly")
|
||||
{
|
||||
updateInterval = 30;
|
||||
}
|
||||
|
||||
var defaultTasks = new[]
|
||||
{
|
||||
new ScheduledTask { Interval = 5, TypeName = typeof(MessagingCleanupCommand).FullName },
|
||||
new ScheduledTask { Interval = updateInterval, TypeName = typeof(ApplicationCheckUpdateCommand).FullName },
|
||||
|
||||
// new ScheduledTask { Interval = 3 * 60, TypeName = typeof(UpdateSceneMappingCommand).FullName },
|
||||
new ScheduledTask { Interval = 6 * 60, TypeName = typeof(ApplicationCheckUpdateCommand).FullName },
|
||||
new ScheduledTask { Interval = 6 * 60, TypeName = typeof(CheckHealthCommand).FullName },
|
||||
new ScheduledTask { Interval = 24 * 60, TypeName = typeof(RefreshMovieCommand).FullName },
|
||||
new ScheduledTask { Interval = 24 * 60, TypeName = typeof(HousekeepingCommand).FullName },
|
||||
|
|
|
|||
Loading…
Reference in a new issue