New worker job for deliveries without a worker

This commit is contained in:
Michael 2022-05-13 07:31:00 +00:00
parent a662245c74
commit 0f0f4bc2c7
2 changed files with 47 additions and 0 deletions

View file

@ -95,6 +95,9 @@ class Cron
// Clear cache entries
Worker::add(PRIORITY_LOW, 'ClearCache');
// Requeue posts from the post delivery entries
Worker::add(PRIORITY_MEDIUM, 'RequeuePosts');
DI::config()->set('system', 'last_cron_hourly', time());
}