diff --git a/DocsV2/docs/Scheduler/README.md b/DocsV2/docs/Scheduler/README.md index 3bf806d5..9c23975b 100644 --- a/DocsV2/docs/Scheduler/README.md +++ b/DocsV2/docs/Scheduler/README.md @@ -241,7 +241,7 @@ In other words, if the same scheduled task is due but another instance of it is scheduler .Schedule() .EveryMinute() - .PreventOverlapping("SomeInvocable"); + .PreventOverlapping(nameof(SomeInvocable)); ``` This method takes in one parameter - a unique key (`string`) among all your scheduled tasks. This makes sure Coravel knows which task to lock and release. diff --git a/Src/Coravel.Mailer/Coravel.Mailer.csproj b/Src/Coravel.Mailer/Coravel.Mailer.csproj index 302bde4d..593018ef 100644 --- a/Src/Coravel.Mailer/Coravel.Mailer.csproj +++ b/Src/Coravel.Mailer/Coravel.Mailer.csproj @@ -4,7 +4,7 @@ .net6.0 True Coravel.Mailer - 5.0.0 + 5.0.1 James Hickey - Coravel.Mailer diff --git a/Src/Coravel/Coravel.csproj b/Src/Coravel/Coravel.csproj index 63ce64cd..25c8bf84 100644 --- a/Src/Coravel/Coravel.csproj +++ b/Src/Coravel/Coravel.csproj @@ -2,7 +2,7 @@ .net6.0 Coravel - 5.0.2 + 5.0.3 James Hickey - Coravel