Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. DatabaseLockBackend.php

function DatabaseLockBackend::release

Same name in this branch
  1. 11.1.x core/lib/Drupal/Core/ProxyClass/Lock/DatabaseLockBackend.php \Drupal\Core\ProxyClass\Lock\DatabaseLockBackend::release()

Overrides LockBackendInterface::release

File

core/lib/Drupal/Core/Lock/DatabaseLockBackend.php, line 143

Class

DatabaseLockBackend
Defines the database lock backend. This is the default backend in Drupal.

Namespace

Drupal\Core\Lock

Code

public function release($name) {
    $name = $this->normalizeName($name);
    unset($this->locks[$name]);
    try {
        $this->database
            ->delete('semaphore')
            ->condition('name', $name)
            ->condition('value', $this->getLockId())
            ->execute();
    } catch (\Exception $e) {
        $this->catchException($e);
    }
}
RSS feed
Powered by Drupal