Chnaged the updater job from Minutely to Hourly

This commit is contained in:
Jamie.Rees 2017-07-27 13:38:08 +01:00
commit f597c52533

View file

@ -21,7 +21,7 @@ namespace Ombi.Schedule
{ {
RecurringJob.AddOrUpdate(() => Cacher.CacheContent(), Cron.Hourly); RecurringJob.AddOrUpdate(() => Cacher.CacheContent(), Cron.Hourly);
RecurringJob.AddOrUpdate(() => RadarrCacher.CacheContent(), Cron.Hourly); RecurringJob.AddOrUpdate(() => RadarrCacher.CacheContent(), Cron.Hourly);
RecurringJob.AddOrUpdate(() => Updater.Update(), Cron.Minutely); RecurringJob.AddOrUpdate(() => Updater.Update(), Cron.Hourly);
} }
} }
} }