mirror of
https://github.com/friendica/friendica
synced 2024-11-11 01:42:55 +00:00
Merge pull request #7570 from nupplaphil/bug/friendica-7298
Some code hardenings for semaphore locking
This commit is contained in:
commit
ce7ec11d1d
1 changed files with 2 additions and 2 deletions
|
@ -39,8 +39,8 @@ class SemaphoreLock extends Lock
|
|||
public function acquireLock($key, $timeout = 120, $ttl = Cache\Cache::FIVE_MINUTES)
|
||||
{
|
||||
self::$semaphore[$key] = sem_get(self::semaphoreKey($key));
|
||||
if (self::$semaphore[$key]) {
|
||||
if (sem_acquire(self::$semaphore[$key], ($timeout == 0))) {
|
||||
if (!empty(self::$semaphore[$key])) {
|
||||
if ((bool)sem_acquire(self::$semaphore[$key], ($timeout === 0))) {
|
||||
$this->markAcquire($key);
|
||||
return true;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue