fastapi-scheduler
fastapi-scheduler copied to clipboard
Cron schedule at different time but running at different time.
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
Could you please tell me what going wrong here and how to fix it.