From 1016edb05b312dabc6ace9dfcefbc9fab2a321bb Mon Sep 17 00:00:00 2001 From: "kay.one" Date: Mon, 20 May 2013 19:49:52 -0700 Subject: [PATCH] 5 minutes update check interval. --- 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 6033b7420..1a98519b0 100644 --- a/NzbDrone.Core/Jobs/TaskManager.cs +++ b/NzbDrone.Core/Jobs/TaskManager.cs @@ -41,7 +41,7 @@ namespace NzbDrone.Core.Jobs new ScheduledTask{ Interval = 12*60, TypeName = typeof(UpdateXemMappings).FullName}, new ScheduledTask{ Interval = 6*60, TypeName = typeof(DiskScanCommand).FullName}, new ScheduledTask{ Interval = 1, TypeName = typeof(DownloadedEpisodesScanCommand).FullName}, - new ScheduledTask{ Interval = 15, TypeName = typeof(ApplicationUpdateCommand).FullName} + new ScheduledTask{ Interval = 5, TypeName = typeof(ApplicationUpdateCommand).FullName} }; var currentTasks = _scheduledTaskRepository.All();