Skip to content

Commit

Permalink
feat: change cron schedule to once every 6 hours
Browse files Browse the repository at this point in the history
  • Loading branch information
Thundernerd authored Apr 5, 2024
1 parent 13aa89a commit 308c56c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public static void Main(string[] args)
options
.ForJob(CalculatePlayerPointsJob.JobKey)
.WithIdentity(CalculatePlayerPointsJob.JobKey.Name + "-Trigger")
.WithCronSchedule("0 5/15 * ? * * *");
.WithCronSchedule("0 0 0/6 ? * * *");
});
});

Expand Down

0 comments on commit 308c56c

Please sign in to comment.