mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-21 05:43:19 -07:00
Change the interval to hours!
This commit is contained in:
parent
d19deea56c
commit
f02dd18c66
1 changed files with 2 additions and 2 deletions
|
@ -161,8 +161,8 @@ namespace PlexRequests.UI.Jobs
|
|||
var plexEpCacher =
|
||||
TriggerBuilder.Create()
|
||||
.WithIdentity("PlexEpisodeCacher", "Cache")
|
||||
.StartAt(DateTimeOffset.Now.AddMinutes(2)) // Everything has started on application start, lets wait 5 minutes
|
||||
.WithSimpleSchedule(x => x.WithIntervalInMinutes(s.PlexEpisodeCacher).RepeatForever())
|
||||
.StartAt(DateTimeOffset.Now.AddMinutes(5))
|
||||
.WithSimpleSchedule(x => x.WithIntervalInHours(s.PlexEpisodeCacher).RepeatForever())
|
||||
.Build();
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue