Hi Pipedream Community, I have the following CRON to trigger a workflow every 5 minutes i.e. 00:05:00 , 00:10:00 , 00:15:00 etc.
0,5,10,15,20,25,30,35,40,45,50,55 * * * *
However instead of triggering 5 minutes from 00:00 , it is triggering from the time the workflow is saved i.e. 00:06:10 , 00:11:10 , “00:16:10” and so on.
I also tried */5 * * * * and 0/5 * * * *which also gives same result
Is there a way to trigger exactly every 5 minutes from 00:00. Any help here really appreciated @pierce
First off, welcome to the Pipedream community. Happy to have you!
Sorry, cron jobs are scheduled for to start not earlier than a specific time, but the precise execution a time is not guaranteed. There will a degree of latency.
You can try another system to trigger a workflow if you need more precise timing, like QStash scheduling to send an HTTP request to trigger a Pipedream workflow.