function DatabaseLockBackend::release

Releases the given lock.

Parameters

string $name: The lock name.

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);
  }
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.