housekeeping run at 2:00am

This commit is contained in:
Simon Ding
2025-11-12 15:01:38 +08:00
parent d8944168d2
commit 6a12c380f1

View File

@@ -42,7 +42,7 @@ func (c *Engine) addSysCron() {
})
c.registerCronJob("check_series_new_release", "0 0 */12 * * *", c.checkAllSeriesNewSeason)
c.registerCronJob("update_import_lists", "0 */20 * * * *", c.periodicallyUpdateImportlist)
c.registerCronJob("housekeeping", "0 0 * * * *", c.housekeeping)
c.registerCronJob("housekeeping", "0 0 2 * * *", c.housekeeping)
go c.housekeeping() //run once on startup
c.schedulers.Range(func(key string, value scheduler) bool {