mirror of
https://github.com/Radarr/Radarr
synced 2024-12-25 09:21:57 +00:00
Updated ForceMigration()
This commit is contained in:
parent
680ea45839
commit
8bf80ecda0
1 changed files with 7 additions and 6 deletions
|
@ -131,7 +131,7 @@ private static void BindJobs()
|
|||
_kernel.Bind<IJob>().To<RssSyncJob>().InTransientScope();
|
||||
_kernel.Bind<IJob>().To<NewSeriesUpdate>().InTransientScope();
|
||||
_kernel.Bind<IJob>().To<UpdateInfoJob>().InTransientScope();
|
||||
|
||||
|
||||
_kernel.Get<JobProvider>().Initialize();
|
||||
_kernel.Get<WebTimer>().StartTimer(30);
|
||||
}
|
||||
|
@ -139,11 +139,12 @@ private static void BindJobs()
|
|||
|
||||
private static void ForceMigration(IRepository repository)
|
||||
{
|
||||
repository.GetPaged<Series>(0, 1);
|
||||
repository.GetPaged<EpisodeFile>(0, 1);
|
||||
repository.GetPaged<Episode>(0, 1);
|
||||
repository.GetPaged<Season>(0, 1);
|
||||
repository.GetPaged<History>(0, 1);
|
||||
repository.All<Series>().Count();
|
||||
repository.All<Season>().Count();
|
||||
repository.All<Episode>().Count();
|
||||
repository.All<EpisodeFile>().Count();
|
||||
repository.All<QualityProfile>().Count();
|
||||
repository.All<History>().Count();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
|
Loading…
Reference in a new issue