Replies: 1 comment
-
I think I need more details:
Thank you! |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
With the following configuration:
scope.ServiceProvider.UseScheduler(scheduler => { scheduler.OnWorker(message.Text); scheduler.ScheduleWithParams<MessagesInvocable>(message) //.Cron($"{DateTime.UtcNow.Minute} {DateTime.UtcNow.Hour} {DateTime.UtcNow.Day} {DateTime.UtcNow.Month} *") .EverySeconds(1) .PreventOverlapping(message.Text) .Once(); });
And executing this for 10 messages I always have more than one execution for at least one message.
Why do you think this happens?
Beta Was this translation helpful? Give feedback.
All reactions