Pierre Cavin
Pierre Cavin
hello @Thornsnake! we have done a lot of work on `cron` since `v1.8.2`, which you're using. could you try to upgrade the package to our latest major version (`v3`)? I'm...
this feature's scope seems simple and well-defined enough: - add an optional parameter to `CronJob` to provide an error-handling function - catch any error happening in the callbacks (even if...
Thank you so much @YanbingJiang for the GitHub Action you shared! I'm posting my modified version if it can be useful to anyone. The main differences are: - uses a...
+1 
hey @gomez-git :wave: thank you for your suggestion! I liked the solution you first suggested: ```ts if (timeZone != null && utcOffset != null) { throw new ExclusiveParametersError('timeZone', 'utcOffset'); }...
@mryellow if you want to move to another library, please feel free to do so :) If, on the other hand, you'd like to start being constructive and helpful, then...
related to #556 since both features need to watch for callbacks completion
What would be the best behavior in your opinion? If your software is running on under-sized hardware / having bottlenecks in the implementation, and the planned execution date is missed,...
> Is there a reason why we are calculating diff instead of just checking remaining > 0 in the first place? From https://github.com/kelektiv/node-cron/pull/259: > This patch prevents onTick() to be...
I have a NestJS codebase running in production for more than 8 months (restarted once in a while for deployments) that runs a lot of cronjobs for handling financial transactions,...