]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Fix regression in OMB sending with queues enabled -- items never got dequeued, leadin...
authorBrion Vibber <brion@pobox.com>
Tue, 24 Nov 2009 23:29:47 +0000 (15:29 -0800)
committerBrion Vibber <brion@pobox.com>
Tue, 24 Nov 2009 23:33:26 +0000 (15:33 -0800)
Success return code from omb_broadcast_message was dropped in commit ec88d2650ea4371cf53229171851747b31587e4b (Aug 10 2009) which switched us to libomb backend. With queues enabled, this would lead to the notice being readded to the outgoing OMB queue for redelivery as the queue system thought the send failed. The resends caused extra load and confusion for third-party sites, and more worryingly just plugged up our own queue so legit messages were badly delayed.

This commit should restore the previous state, where we fire-and-forget; that is, we're not actually checking to see if all remote subscribers received the message successfully and there will be no resends.

lib/omb.php

index cd6d6e1b259162c4f76aa61ba473cbe8f2d23880..49496b774ef017406ba4bc1e4b5ed278a9e63ed7 100644 (file)
@@ -102,7 +102,7 @@ function omb_broadcast_notice($notice)
         common_debug('Finished to ' . $rp->postnoticeurl, __FILE__);
     }
 
-    return;
+    return true;
 }
 
 function omb_broadcast_profile($profile)