Hello everyone!
I have difficulty with the cron (schedule trigger)
1/ I don’t understand why there are differences between your doc and the node explanation. Which is the good one? (cf first 2 pictures)
2/I want my wf to be triggered the 3rd of each month at noon (BUT not march, june, september and december). I don’t know why the wf has been triggered June 15th at 12:00
I used Cron expression = 0 12 3 * 1,2,4,5,7,8,10,11
3/ On the other way around, I want another workflow to be triggered the 3rd of march, june, september and december at 12:00
Cron expression = 0 12 3 * 1,2,4,5,7,8,10,11
And this one work. Why not the previous one? It’s exactly the same format…
This caught me out the other day, The docs is the correct option we support the extra second option. We recently fixed an issue with the schedule node which I think will fix the issue you are seeing it might be worth making sure you are on 0.231.2 or later and seeing if that works.
It can crash if it is trying to do something and runs out of memory, Can you give me more information on your set up? It does look like it is still trying to go through the migrations before it crashes but it is a bit slow.
So it could be that the migration is taking time or maybe there is not enough space to fully carry it out, I would suggest rolling back to a previous version of n8n that worked and enable the data pruning options to remove some of the older data.
Hi @Jon
We upgraded n8n to 0.231.2 and my cron is still not working
I want my wf to be triggered the 3rd of each month at noon (BUT not march, june, september and december)
I used Cron expression = 0 12 3 * 1,2,4,5,7,8,10,11
I don’t understand why my cron is triggered everyday at noon, and whatever the month.
Any idea?