diff --git a/src/NzbDrone.Common/Instrumentation/NzbDroneLogger.cs b/src/NzbDrone.Common/Instrumentation/NzbDroneLogger.cs index 39febd26c2..8d319a77a7 100644 --- a/src/NzbDrone.Common/Instrumentation/NzbDroneLogger.cs +++ b/src/NzbDrone.Common/Instrumentation/NzbDroneLogger.cs @@ -63,7 +63,7 @@ private static void RegisterLogEntries() { var target = new LogentriesTarget(); target.Name = "logentriesTarget"; - target.Token = "d3a83ee9-74fb-4045-ad25-a84c1d4d7c81"; + target.Token = "7688c9ac-015f-45c7-bfee-73f370f5f380"; target.LogHostname = true; target.Debug = false; diff --git a/src/NzbDrone.Core/Jobs/TaskManager.cs b/src/NzbDrone.Core/Jobs/TaskManager.cs index bb05fc8451..717fff6de1 100644 --- a/src/NzbDrone.Core/Jobs/TaskManager.cs +++ b/src/NzbDrone.Core/Jobs/TaskManager.cs @@ -134,9 +134,9 @@ private int GetRssSyncInterval() { var interval = _configService.RssSyncInterval; - if (interval > 0 && interval < 5) + if (interval > 0 && interval < 10) { - return 5; + return 10; } if (interval < 0)