From 6a41f6a43545fc4a55c2886aae9a052d86c994a5 Mon Sep 17 00:00:00 2001 From: Devin Buhl Date: Wed, 18 Jan 2017 14:02:04 -0500 Subject: [PATCH 1/2] Turn off scene mapping task #329, update TaskManager to use 'DownloadedMovieScanCommand' --- src/NzbDrone.Core/Jobs/TaskManager.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/NzbDrone.Core/Jobs/TaskManager.cs b/src/NzbDrone.Core/Jobs/TaskManager.cs index 68848b578..453d74aab 100644 --- a/src/NzbDrone.Core/Jobs/TaskManager.cs +++ b/src/NzbDrone.Core/Jobs/TaskManager.cs @@ -64,7 +64,7 @@ namespace NzbDrone.Core.Jobs new ScheduledTask{ Interval = 0.25f, TypeName = typeof(CheckForFinishedDownloadCommand).FullName}, new ScheduledTask{ Interval = 5, TypeName = typeof(MessagingCleanupCommand).FullName}, new ScheduledTask{ Interval = 6*60, TypeName = typeof(ApplicationUpdateCommand).FullName}, - new ScheduledTask{ Interval = 3*60, TypeName = typeof(UpdateSceneMappingCommand).FullName}, + // new ScheduledTask{ Interval = 3*60, TypeName = typeof(UpdateSceneMappingCommand).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}, @@ -79,7 +79,8 @@ namespace NzbDrone.Core.Jobs new ScheduledTask { Interval = _configService.DownloadedEpisodesScanInterval, - TypeName = typeof(DownloadedEpisodesScanCommand).FullName + // TypeName = typeof(DownloadedEpisodesScanCommand).FullName + TypeName = typeof(DownloadedMovieScanCommand).FullName }, }; From ecea417fd8fc9a53a98247790d691362a15b0fdf Mon Sep 17 00:00:00 2001 From: Devin Buhl Date: Wed, 18 Jan 2017 14:07:51 -0500 Subject: [PATCH 2/2] Revert DownloadedMovieScanCommand to DownloadedEpisodesScanCommand Not sure if it will break anything so putting it back. --- src/NzbDrone.Core/Jobs/TaskManager.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/NzbDrone.Core/Jobs/TaskManager.cs b/src/NzbDrone.Core/Jobs/TaskManager.cs index 453d74aab..43af20db5 100644 --- a/src/NzbDrone.Core/Jobs/TaskManager.cs +++ b/src/NzbDrone.Core/Jobs/TaskManager.cs @@ -79,8 +79,8 @@ namespace NzbDrone.Core.Jobs new ScheduledTask { Interval = _configService.DownloadedEpisodesScanInterval, - // TypeName = typeof(DownloadedEpisodesScanCommand).FullName - TypeName = typeof(DownloadedMovieScanCommand).FullName + TypeName = typeof(DownloadedEpisodesScanCommand).FullName + //TypeName = typeof(DownloadedMovieScanCommand).FullName }, };