Merge branch '3.0' into 4.0

This commit is contained in:
Daniel Hensby 2018-06-20 10:45:28 +01:00
commit 92770b01c6
No known key found for this signature in database
GPG Key ID: D8DEBC4C8E7BC8B9
1 changed files with 8 additions and 0 deletions

View File

@ -80,6 +80,14 @@ class ContentReviewNotificationJob extends AbstractQueuedJob implements QueuedJo
return QueuedJob::QUEUED;
}
public function setup() {
parent::setup();
// Recommended for long running jobs that don't increment 'currentStep'
// https://github.com/silverstripe-australia/silverstripe-queuedjobs
$this->currentStep = -1;
}
public function process()
{
$this->queueNextRun();