79427774

Date: 2025-02-10 17:00:22
Score: 1
Natty:
Report link

NestJS has added a waitForCompletion option in version 5.0.1.

https://github.com/nestjs/schedule/pull/1870

@Cron(CronExpression.EVERY_SECOND, {
  waitForCompletion: true,
})
async handleCron() {
  this.logger.debug(`start ${c}`);
  await timeout(3000)
  this.logger.debug(`end ${c}`);
  c += 1;
}
Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
Posted by: Steve