fixing delete

This commit is contained in:
Philipp Holzer 2019-02-24 10:27:56 +01:00
parent 9b07132b80
commit 7ce549c294
No known key found for this signature in database
GPG key ID: 517BE60E2CE5C8A5

View file

@ -66,7 +66,7 @@ class CacheLockDriver extends AbstractLockDriver
$cachekey = self::getLockKey($key);
if ($force) {
$this->cache->delete($key);
$this->cache->delete($cachekey);
} else {
$this->cache->compareDelete($cachekey, getmypid());
}