From df247bcc86a1d9410467350b40796fe05a84b4db Mon Sep 17 00:00:00 2001 From: Chase Tucker Date: Mon, 15 Apr 2024 12:06:12 -0700 Subject: [PATCH] Corrected worker schedules --- FabApprovalWorkerService/Program.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/FabApprovalWorkerService/Program.cs b/FabApprovalWorkerService/Program.cs index a606639..37e09f1 100644 --- a/FabApprovalWorkerService/Program.cs +++ b/FabApprovalWorkerService/Program.cs @@ -38,7 +38,7 @@ builder.Services.AddQuartz(q => { q.AddTrigger(opts => opts .ForJob(pendingOOOStatusJob) .WithIdentity("Pending OOO status trigger") - .WithCronSchedule(CronScheduleBuilder.DailyAtHourAndMinute(0, 0)) + .WithCronSchedule(CronScheduleBuilder.DailyAtHourAndMinute(0, 15)) ); JobKey expiredOOOStatusJob = new JobKey("Expired OOO status job"); @@ -48,7 +48,7 @@ builder.Services.AddQuartz(q => { q.AddTrigger(opts => opts .ForJob(expiredOOOStatusJob) .WithIdentity("Expired OOO status trigger") - .WithCronSchedule(CronScheduleBuilder.DailyAtHourAndMinute(10, 52)) + .WithCronSchedule(CronScheduleBuilder.DailyAtHourAndMinute(0, 0)) ); JobKey expiringTECNJob = new JobKey("Expiring TECN job");