Merge pull request #11805 from annando/no-standard-decoupling
Decoupling is deactivated by default now
This commit is contained in:
commit
1ecc2982ba
|
@ -311,7 +311,9 @@ class Processor
|
|||
$result = self::fetchMissingActivity($activity['reply-to-id'], $activity, '', Receiver::COMPLETION_AUTO);
|
||||
if (empty($result) && self::isActivityGone($activity['reply-to-id'])) {
|
||||
// Recursively delete this and all depending entries
|
||||
Queue::deleteById($activity['entry-id']);
|
||||
if (!empty($activity['entry-id'])) {
|
||||
Queue::deleteById($activity['entry-id']);
|
||||
}
|
||||
return [];
|
||||
}
|
||||
$fetch_by_worker = empty($result);
|
||||
|
@ -366,9 +368,10 @@ class Processor
|
|||
|
||||
if (!empty($activity['raw'])) {
|
||||
$item['source'] = $activity['raw'];
|
||||
$item['protocol'] = Conversation::PARCEL_ACTIVITYPUB;
|
||||
}
|
||||
|
||||
$item['protocol'] = Conversation::PARCEL_ACTIVITYPUB;
|
||||
|
||||
if (isset($activity['push'])) {
|
||||
$item['direction'] = $activity['push'] ? Conversation::PUSH : Conversation::PULL;
|
||||
}
|
||||
|
|
|
@ -583,7 +583,7 @@ class Receiver
|
|||
$object_data['object_activity'] = $activity;
|
||||
}
|
||||
|
||||
if ($trust_source || DI::config()->get('debug', 'ap_inbox_store_untrusted')) {
|
||||
if (DI::config()->get('system', 'decoupled_receiver') && ($trust_source || DI::config()->get('debug', 'ap_inbox_store_untrusted'))) {
|
||||
$object_data = Queue::add($object_data, $type, $uid, $http_signer, $push, $trust_source);
|
||||
}
|
||||
|
||||
|
|
|
@ -93,7 +93,9 @@ class Cron
|
|||
Queue::clear();
|
||||
|
||||
// Process all unprocessed entries
|
||||
Queue::processAll();
|
||||
if (DI::config()->get('system', 'decoupled_receiver')) {
|
||||
Queue::processAll();
|
||||
}
|
||||
|
||||
// Search for new contacts in the directory
|
||||
if (DI::config()->get('system', 'synchronize_directory')) {
|
||||
|
|
|
@ -166,7 +166,7 @@ return [
|
|||
|
||||
// decoupled_receiver (Boolean)
|
||||
// Decouple incoming AP posts by doing the processing in the background.
|
||||
'decoupled_receiver' => true,
|
||||
'decoupled_receiver' => false,
|
||||
|
||||
// distributed_cache_driver (database|memcache|memcached|redis)
|
||||
// Whether to use database, Memcache, Memcached or Redis as a distributed cache.
|
||||
|
|
Loading…
Reference in a new issue