rez_core 2.2.186 → 2.2.188

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rez_core",
3
- "version": "2.2.186",
3
+ "version": "2.2.188",
4
4
  "description": "",
5
5
  "author": "",
6
6
  "private": false,
@@ -442,7 +442,7 @@ export class TaskService extends EntityServiceImpl {
442
442
  return await super.createEntity(notePayload, loggedInUser);
443
443
  }
444
444
 
445
- @Cron(CronExpression.EVERY_30_MINUTES)
445
+ @Cron(CronExpression.EVERY_30_SECONDS)
446
446
  async fetchTasksDueIn30Mins() {
447
447
  const now = new Date();
448
448
  const in30Min = new Date(now.getTime() + 30 * 60 * 1000);