MDL-76865 core: Check lock state before attempting to acquire a lock

This commit is contained in:
Dale Davies 2023-08-10 13:42:46 +01:00
parent 478abd671f
commit af91ae626a

View File

@ -621,7 +621,8 @@ class cache implements cache_loader {
// store; parent method will have set it to all stores if needed.
if ($setaftervalidation) {
$lock = null;
if (!empty($this->requirelockingbeforewrite)) {
// Only try to acquire a lock for this cache if we do not already have one.
if (!empty($this->requirelockingbeforewrite) && !$this->check_lock_state($key)) {
$lock = $this->acquire_lock($key);
}
if ($requiredversion === self::VERSION_NONE) {