From aa647c37d35fa8bafb3c5352f71a1a50940164db Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Fri, 10 Aug 2018 11:08:05 -0400 Subject: [PATCH] fix top of the hour cron expression --- src/Api/Jobs/JobsHostedService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Api/Jobs/JobsHostedService.cs b/src/Api/Jobs/JobsHostedService.cs index 1632b568f0..ab331a24e4 100644 --- a/src/Api/Jobs/JobsHostedService.cs +++ b/src/Api/Jobs/JobsHostedService.cs @@ -21,7 +21,7 @@ namespace Bit.Api.Jobs { var everyTopOfTheHourTrigger = TriggerBuilder.Create() .StartNow() - .WithCronSchedule("* * * * * ?") + .WithCronSchedule("0 0 * * * ?") .Build(); var everyTopOfTheSixthHourTrigger = TriggerBuilder.Create() .StartNow()