From: Michael Date: Sun, 8 Jul 2018 08:32:50 +0000 (+0000) Subject: urgent bugfix: Wrong function name for locks X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=c25c3b5981787df9a2de9ef85d76f9934440f2d7;p=friendica.git urgent bugfix: Wrong function name for locks --- diff --git a/src/Model/Item.php b/src/Model/Item.php index 8a96e54405..162387185e 100644 --- a/src/Model/Item.php +++ b/src/Model/Item.php @@ -1731,7 +1731,7 @@ class Item extends BaseObject } // To avoid timing problems, we are using locks. - $locked = Lock::set('item_insert_activity'); + $locked = Lock::acquire('item_insert_activity'); if (!$locked) { logger("Couldn't acquire lock for URI " . $item['uri'] . " - proceeding anyway."); } @@ -1751,7 +1751,7 @@ class Item extends BaseObject return false; } if ($locked) { - Lock::remove('item_insert_activity'); + Lock::release('item_insert_activity'); } return true; }