jaumard / sails-hook-schedule

Hook to manage basic cron job for sails application
21 stars 6 forks source link

How Can I set execute task everyday at 04:30 am #4

Open WillZeroman opened 8 years ago

WillZeroman commented 8 years ago

I set task as follow:

tasks : { firstTask : { cron : "0 30 04 * * *", task : function (context, sails) { console.log("cron ok"); }, context : {} } }

I set cron "0 30 04 * * " ,but it does not work. also set cron "0 30 04 /1 * *", it does not work too.