jamesmh / coravel

Near-zero config .NET library that makes advanced application features like Task Scheduling, Caching, Queuing, Event Broadcasting, and more a breeze!

Home Page:https://docs.coravel.net/Installation/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Worker Service with Scheduler doesn't execute IInvocable using EveryMinute().WeekDay() on a Friday.

zemuss opened this issue · comments

Worker Service with Scheduler doesn't execute IInvocable using EveryMinute().WeekDay() on a Friday.

Coravel Version 5.0.2
Sample program:

host.Services.UseScheduler(scheduler =>
{
scheduler.Schedule()
.EveryMinute();
.Weekday();
});

If I take out the .WeekDay() method it will execute every..

Can't reproduce this. Could you share the actual code from your program to help diagnose?