I have a few jobs configured to be executed on an ASP.NET MVC Site through Hangfire. Hangfire uses a cron expression to trigger said jobs. I thought I had the expression correct, but the triggering is happening too often.
As you can see, the top job just finished executing 6 minutes previously and its next execution is expected to happen in an hour. But the cron expression, as I understand it, says it should only trigger once a day at 2 AM. Even accounting for different time zones, it shouldn't be happening on an hourly basis.
Do I have the cron expression incorrect? I will admit to not being completely knowledgeable about that, though from my reading I thought I had it correct.
Thanks