jamesmh/coravel

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

zemuss opened this issue · 1 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?