Skip to content

Commit

Permalink
Fixed job scheduling
Browse files Browse the repository at this point in the history
  • Loading branch information
Thundernerd committed Sep 2, 2024
1 parent 0262585 commit 46bdb81
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Jobs/JobScheduler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ public void ScheduleRecurringJobs()
ScheduleRecurringJob<CalculateUserPointsJob>(Cron.Never());
#else
ScheduleRecurringJob<ProcessLevelRequestsJob>(Cron.MinuteInterval(5));
ScheduleRecurringJob<FullWorkshopScanJob>(Cron.Never());
ScheduleRecurringJob<PartialWorkshopScanJob>(Cron.Never());
ScheduleRecurringJob<FullWorkshopScanJob>(Cron.Monthly());
ScheduleRecurringJob<PartialWorkshopScanJob>(Cron.Hourly());
ScheduleRecurringJob<CalculateLevelPointsJob>(Cron.Never());
ScheduleRecurringJob<CalculateUserPointsJob>(Cron.Hourly());
#endif
Expand Down

0 comments on commit 46bdb81

Please sign in to comment.