#173 Fix race condition on certificate issues in scheduled task
This commit is contained in:
parent
f55f3cf399
commit
9f4e1f43b4
1 changed files with 14 additions and 9 deletions
|
@ -125,6 +125,10 @@ class email_certificate_task extends \core\task\scheduled_task {
|
|||
}
|
||||
}
|
||||
|
||||
// Ensure the cert hasn't already been issued, e.g via the UI (view.php) - a race condition.
|
||||
$issueid = $DB->get_field('customcert_issues', 'id',
|
||||
array('userid' => $enroluser->id, 'customcertid' => $customcert->id));
|
||||
if (empty($issueid)) {
|
||||
// Ok, issue them the certificate.
|
||||
$customcertissue = new \stdClass();
|
||||
$customcertissue->customcertid = $customcert->id;
|
||||
|
@ -135,6 +139,7 @@ class email_certificate_task extends \core\task\scheduled_task {
|
|||
|
||||
// Insert the record into the database.
|
||||
$issueid = $DB->insert_record('customcert_issues', $customcertissue);
|
||||
}
|
||||
|
||||
// Add them to the array so we email them.
|
||||
$enroluser->issueid = $issueid;
|
||||
|
|
Loading…
Reference in a new issue