From 7ebcd2b75eb472fea920bdd30dcb03120cfed1c6 Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Tue, 18 Jun 2013 08:09:02 -0700 Subject: [PATCH] RssSync defaults to 15 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 50fbc3f3c..0eff4d815 100644 --- a/NzbDrone.Core/Jobs/TaskManager.cs +++ b/NzbDrone.Core/Jobs/TaskManager.cs @@ -39,7 +39,7 @@ namespace NzbDrone.Core.Jobs { var defaultTasks = new[] { - new ScheduledTask{ Interval = 25, TypeName = typeof(RssSyncCommand).FullName}, + new ScheduledTask{ Interval = 15, TypeName = typeof(RssSyncCommand).FullName}, new ScheduledTask{ Interval = 12*60, TypeName = typeof(UpdateXemMappings).FullName}, new ScheduledTask{ Interval = 6*60, TypeName = typeof(RefreshSeriesCommand).FullName}, new ScheduledTask{ Interval = 1, TypeName = typeof(DownloadedEpisodesScanCommand).FullName},