Registered Metadata refresh job

This commit is contained in:
Mark McDowall 2012-07-14 21:34:01 -07:00
parent 9d5c942cbf
commit 4776f0430b
1 changed files with 1 additions and 0 deletions

View File

@ -145,6 +145,7 @@ namespace NzbDrone.Core
Kernel.Bind<IJob>().To<CheckpointJob>().InSingletonScope(); Kernel.Bind<IJob>().To<CheckpointJob>().InSingletonScope();
Kernel.Bind<IJob>().To<SearchHistoryCleanupJob>().InSingletonScope(); Kernel.Bind<IJob>().To<SearchHistoryCleanupJob>().InSingletonScope();
Kernel.Bind<IJob>().To<PastWeekBacklogSearchJob>().InSingletonScope(); Kernel.Bind<IJob>().To<PastWeekBacklogSearchJob>().InSingletonScope();
Kernel.Bind<IJob>().To<RefreshEpisodeMetadata>().InSingletonScope();
Kernel.Get<JobProvider>().Initialize(); Kernel.Get<JobProvider>().Initialize();
Kernel.Get<WebTimer>().StartTimer(30); Kernel.Get<WebTimer>().StartTimer(30);