my question may seem a little strange but I will try to explain, I have a cron job that executes a function, inside this function there is a loop that executes other functions, this cron is called every 1 minute, so far so good . The problem is that this function called by cron takes more than 1 minute to finish because of the loop, when the next minute the cron runs, it will call this function again and it will cancel the previous task or it will run both at the same time? I don't know if I could explain it in a good way.
/*---------- Cron ----------*/
cron.schedule('*/60 * * * * *', async () => {
this.analyze();
// this function takes about 2-3 minutes to finish the loop.
})