I'm using sashido AS parse server. I want to implement cron jobs in sashido which can call every 1 minute.
I have defined jobs.js file in cloud code(sashido) which contains below code.
const cron = require('node-cron');
var schedule = require('node-schedule');
cron.schedule("1 * * * * *", () => {
console.info('--Every Minutes-------', new Date());
});
When I deployed it to sashido it giving me this logs in logs file.
It showing me multiple logs at the same time. Please help me out of this stuff. Thanks in advance..