From e24c85cc1c8230fa94c1a2d48ac2ed43a67b920a Mon Sep 17 00:00:00 2001 From: "kay.one" Date: Mon, 29 Jul 2013 19:34:29 -0700 Subject: [PATCH] upped updated interval to 60 minutes from 5 minutes. --- NzbDrone.Core/Jobs/TaskManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NzbDrone.Core/Jobs/TaskManager.cs b/NzbDrone.Core/Jobs/TaskManager.cs index 706dc6b19..c309f6697 100644 --- a/NzbDrone.Core/Jobs/TaskManager.cs +++ b/NzbDrone.Core/Jobs/TaskManager.cs @@ -43,7 +43,7 @@ namespace NzbDrone.Core.Jobs new ScheduledTask{ Interval = 12*60, TypeName = typeof(UpdateXemMappingsCommand).FullName}, new ScheduledTask{ Interval = 12*60, TypeName = typeof(RefreshSeriesCommand).FullName}, new ScheduledTask{ Interval = 1, TypeName = typeof(DownloadedEpisodesScanCommand).FullName}, - new ScheduledTask{ Interval = 5, TypeName = typeof(ApplicationUpdateCommand).FullName}, + new ScheduledTask{ Interval = 60, TypeName = typeof(ApplicationUpdateCommand).FullName}, new ScheduledTask{ Interval = 1*60, TypeName = typeof(TrimLogCommand).FullName} };