fastapi-scheduler icon indicating copy to clipboard operation
fastapi-scheduler copied to clipboard

Cron schedule at different time but running at different time.

Open rajansahu713 opened this issue 2 years ago • 0 comments

I have scheduled cron at (Hour=3 and minutes=30) as you can see below code

@scheduler.scheduled_job('cron', hour=3, minute=30) def cron_task_test(): print('cron task is run...3:30 ')

But in the cron admin panel, you can see that it is scheduled at 1:00 and it running also at 1:00

image

Could you please tell me what going wrong here and how to fix it.

rajansahu713 avatar Mar 03 '24 11:03 rajansahu713