| Issue 1: | dropr message processor must discard message when an execption occurs | |
| 1 person starred this issue and may be notified of changes. | Back to list |
Patch: Index: messagedaemon.php =================================================================== --- messagedaemon.php (revision 40) +++ messagedaemon.php (working copy) @@ -79,7 +79,9 @@ } } catch(Exception $ex) { $log->crit("Cannot process message id '" . $message->getID(). - "': Exception encountered!\n" . $ex->getMessage()); + "': Exception encountered!\n" . $ex->getMessage() . " - discarding message!"); + // discard message + $storage->setProcessed($message); continue; }
May 15, 2008
Project Member
#1
hackbard...@gmail.com
Owner:
mwolffhh
May 30, 2008
Applied in Rev. 45, thanks for the patch :-)
Status:
Fixed
|