X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=lib%2Fdbqueuemanager.php;h=f843d6d9e617286b0b251b55ead91256d3e86fbd;hb=0590f2975e6c5b26bbe6121da5c49890e035721e;hp=51553b899906b9ae64e58ea9ceaa5f70bc9185f6;hpb=2f38c9c99cb10be8fab28a624fa6f64cec6c0a9b;p=quix0rs-gnu-social.git diff --git a/lib/dbqueuemanager.php b/lib/dbqueuemanager.php index 51553b8999..f843d6d9e6 100644 --- a/lib/dbqueuemanager.php +++ b/lib/dbqueuemanager.php @@ -44,7 +44,7 @@ class DBQueueManager extends QueueManager $qi->created = common_sql_now(); $result = $qi->insert(); - if (!$result) { + if ($result === false) { common_log_db_error($qi, 'INSERT', __FILE__); throw new ServerException('DB error inserting queue item'); } @@ -71,35 +71,36 @@ class DBQueueManager extends QueueManager */ public function poll() { - $this->_log(LOG_DEBUG, 'Checking for notices...'); + //$this->_log(LOG_DEBUG, 'Checking for notices...'); $qi = Queue_item::top($this->activeQueues()); if (empty($qi)) { - $this->_log(LOG_DEBUG, 'No notices waiting; idling.'); + //$this->_log(LOG_DEBUG, 'No notices waiting; idling.'); return false; } $queue = $qi->transport; - $item = $this->decode($qi->frame); + try { + $item = $this->decode($qi->frame); + } catch (Exception $e) { + $this->_log(LOG_INFO, "[$queue] Discarding: ".$e->getMessage()); + $this->_done($qi); + return true; + } - if ($item) { - $rep = $this->logrep($item); - $this->_log(LOG_INFO, "Got $rep for transport $queue"); - - $handler = $this->getHandler($queue); - if ($handler) { - if ($handler->handle($item)) { - $this->_log(LOG_INFO, "[$queue:$rep] Successfully handled item"); - $this->_done($qi); - } else { - $this->_log(LOG_INFO, "[$queue:$rep] Failed to handle item"); - $this->_fail($qi); - } - } else { - $this->_log(LOG_INFO, "[$queue:$rep] No handler for queue $queue; discarding."); + $rep = $this->logrep($item); + $this->_log(LOG_DEBUG, "Got $rep for transport $queue"); + + $handler = $this->getHandler($queue); + if ($handler) { + if ($handler->handle($item)) { + $this->_log(LOG_INFO, "[$queue:$rep] Successfully handled item"); $this->_done($qi); + } else { + $this->_log(LOG_INFO, "[$queue:$rep] Failed to handle item"); + $this->_fail($qi); } } else { - $this->_log(LOG_INFO, "[$queue] Got empty/deleted item, discarding"); + $this->_log(LOG_INFO, "[$queue:$rep] No handler for queue $queue; discarding."); $this->_done($qi); } return true;