Always queue inbox distribution

This commit is contained in:
Mikael Nordfeldth 2014-03-06 01:50:54 +01:00
parent c0f65f6ea7
commit 00db57949f
2 changed files with 14 additions and 20 deletions

View File

@ -2071,7 +2071,6 @@ class Notice extends Managed_DataObject
Inbox::insertNotice($this, $user->id);
}
if (common_config('queue', 'inboxes')) {
// If there's a failure, we want to _force_
// distribution at this point.
try {
@ -2090,10 +2089,6 @@ class Notice extends Managed_DataObject
// Re-throw so somebody smarter can handle it.
throw $e;
}
} else {
$handler = new DistribQueueHandler();
$handler->handle($this);
}
}
function insert()

View File

@ -100,7 +100,6 @@ $default =
'softlimit' => '90%', // total size or % of memory_limit at which to restart queue threads gracefully
'spawndelay' => 1, // Wait at least N seconds between (re)spawns of child processes to avoid slamming the queue server with subscription startup
'debug_memory' => false, // true to spit memory usage to log
'inboxes' => true, // true to do inbox distribution & output queueing from in background via 'distrib' queue
'breakout' => array(), // List queue specifiers to break out when using Stomp queue.
// Default will share all queues for all sites within each group.
// Specify as <group>/<queue> or <group>/<queue>/<site>,