I'm submitting
Current behavior
Every scheduled job runs multiple times.
Expected behavior
It should be triggered only once for the given cron expression
Minimal reproduction of the problem with instructions
@Cron('* * * * *')
async helloWorld() {
console.log(new Date());
console.log('coming');
console.log(new Date());
}
This simple hello world scheduled job triggers multiple times every minute.
Environment
I'm submitting
Current behavior
Every scheduled job runs multiple times.
Expected behavior
It should be triggered only once for the given cron expression
Minimal reproduction of the problem with instructions
This simple hello world scheduled job triggers multiple times every minute.
Environment