I’m running n8n self-hosted on Hostinger and noticed that the Cron trigger doesn’t start at the correct interval when set to more than 60 seconds (e.g., 90 or 120 seconds). It always starts at 60-second marks regardless of the configured interval.
Has this been resolved yet? You can also set your scheduler to a Cron value like this
*/2 * * * *
The smallest unit cron supports is 60 seconds, so to run every 120, you would use */2. You can use perplexity to ask for any interval it will help give you the cron value.