Decoupling is deactivated by default now

This commit is contained in:
Michael 2022-07-31 07:48:35 +00:00
parent da06878f6c
commit 371f20a1aa
2 changed files with 4 additions and 2 deletions

View File

@ -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')) {

View File

@ -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.