forked from GNUsocial/gnu-social
XXX comments to remember to fan-out in realtime distribution
This commit is contained in:
parent
a602477a1d
commit
641749453d
@ -210,6 +210,9 @@ class RealtimePlugin extends Plugin
|
||||
|
||||
$this->_connect();
|
||||
|
||||
// XXX: We should probably fan-out here and do a
|
||||
// new queue item for each path
|
||||
|
||||
foreach ($paths as $path) {
|
||||
|
||||
list($action, $arg1, $arg2) = $path;
|
||||
@ -217,6 +220,10 @@ class RealtimePlugin extends Plugin
|
||||
$channels = Realtime_channel::getAllChannels($action, $arg1, $arg2);
|
||||
|
||||
foreach ($channels as $channel) {
|
||||
|
||||
// XXX: We should probably fan-out here and do a
|
||||
// new queue item for each user/path combo
|
||||
|
||||
if (is_null($channel->user_id)) {
|
||||
$profile = null;
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user