Alchoder

Results 7 comments of Alchoder

Hello, I got the same problem. Maybe to fix this you could use something else than System.Timers.Timer here ? ![image](https://user-images.githubusercontent.com/45818215/229491096-4fb08b9a-27ba-4340-b85d-09e1be1b39a7.png) Maybe System.Threading.Timer or https://stackoverflow.com/questions/41284103/assign-a-double-value-to-timer-interval https://stackoverflow.com/questions/34047810/timer-max-interval

I'm trying to use your workaround, but I think it doesn't work like it is, I mean, if you call `Test()` (where I suppose one would put the CronJob code)...

Not sure this will work, let me know about it. ```c# public class MyJob: CronJobService { private readonly ILogger _logger; private System.Timers.Timer timer; public MyJob(ICronConfiguration cronConfiguration, ILogger logger, IServiceProvider serviceProvider)...

Hello @furkandeveloper, You're welcome :) I understand. I'll try to remember to let you know :)

Actually it did not work completely. I replaced ``` services.ApplyResulation(options => { options.CronExpression = "0 0 15,25 * *"; options.TimeZoneInfo = TimeZoneInfo.Local; }); ``` by ``` services.ApplyResulation(options => { options.CronExpression...