I’m using a number of node schedulers. One of these is time sensitive.
If we take an hourly scheduler for example, what is the starting ‘hour’. For example do all schedulers just run on a 24 hour clock, so, if I use an hourly scheduler it’ll run at the next whole hour or, does it run 1 hour from the time the node app is redeployed?
From what I know CRON expressions do not care about the deployment time.
All expressions are relative to the current date time.
So, if you have a scheduler in Wappler set to run every hour, and you deploy at 15:43, it will run at 16:00. If deployed at 16:03, it will run at 17:00.