You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In looking at #815 it was clear that cron could use a refactor to be more performant and user oriented rather than just system/application oriented. That is to say, all the tasks do not need to load from the DB, just those needed/searched, unless it's returning all. So pending tasks needed to be made more efficient. Only specified application tasks from TCronModule need to be loaded for cron to work, not the DB cron tasks.
There are a few other additions as well:
To the SecondResolution (option) of executing by sleeping the cron thread and ordering the tasks by nextTriggerDate.
Updated permission for dyRunTask to enable specific users to run cron tasks (or all if the permissions are set so).
Updated permissions to allow users to search, edit, and delete their own cron tasks and logs.
Display of logs and log flushing in the shell
Changed the default action for "cron/" to show the tasks rather than run.
The text was updated successfully, but these errors were encountered:
In looking at #815 it was clear that cron could use a refactor to be more performant and user oriented rather than just system/application oriented. That is to say, all the tasks do not need to load from the DB, just those needed/searched, unless it's returning all. So pending tasks needed to be made more efficient. Only specified application tasks from TCronModule need to be loaded for cron to work, not the DB cron tasks.
There are a few other additions as well:
The text was updated successfully, but these errors were encountered: