var job = new CronJob({
cronTime: '/1 * * * * *',
onTick:function() {
console.log(new Date, 'tick triggered');
},
onComplete: function(){/*/},
start: true,
runOnInit: true
});
job.start();
this job hanged & not seeing any logs after certain hours of execution. i am using nodejs 6.1.0 & cron 1.1.0
is cron supports every second jobs && if we not mentioned timezone which time zone takes for the job?
Thanks