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
1 changed files with 1 additions and 1 deletions

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