jamesmh / coravel

Near-zero config .NET library that makes advanced application features like Task Scheduling, Caching, Queuing, Event Broadcasting, and more a breeze!
https://docs.coravel.net/Installation/
MIT License
3.63k stars 243 forks source link

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

Open zemuss opened 1 month ago

zemuss commented 1 month ago

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..