contrib modules updates

This commit is contained in:
2019-02-27 10:39:59 +01:00
parent 04a4b8895d
commit e3cf889820
579 changed files with 18343 additions and 4076 deletions
@@ -104,10 +104,7 @@ class PhpRedis extends LockBackendAbstract {
$key = $this->getKey($name);
$value = $this->client->get($key);
// In Drupal 7, this method treated the lock as available if the ID did
// match. The database backend and test expects it to return FALSE in that
// case, updated accordingly.
return FALSE === $value;
return $value === FALSE || $value === NULL;
}
/**
@@ -98,10 +98,7 @@ class Predis extends LockBackendAbstract {
$key = $this->getKey($name);
$value = $this->client->get($key);
// In Drupal 7, this method treated the lock as available if the ID did
// match. The database backend and test expects it to return FALSE in that
// case, updated accordingly.
return FALSE === $value;
return $value === FALSE || $value === NULL;
}
public function release($name) {