From 308c56cb6f401055c22995449a4246ff29595775 Mon Sep 17 00:00:00 2001 From: Christiaan Bloemendaal Date: Fri, 5 Apr 2024 14:37:13 +0200 Subject: [PATCH] feat: change cron schedule to once every 6 hours --- Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Program.cs b/Program.cs index 05ec927..acb97f1 100644 --- a/Program.cs +++ b/Program.cs @@ -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 ? * * *"); }); });