mirror of
https://github.com/friendica/friendica
synced 2025-01-03 16:02:19 +00:00
Decoupling is deactivated by default now
This commit is contained in:
parent
da06878f6c
commit
371f20a1aa
2 changed files with 4 additions and 2 deletions
|
@ -93,7 +93,9 @@ class Cron
|
||||||
Queue::clear();
|
Queue::clear();
|
||||||
|
|
||||||
// Process all unprocessed entries
|
// Process all unprocessed entries
|
||||||
Queue::processAll();
|
if (DI::config()->get('system', 'decoupled_receiver')) {
|
||||||
|
Queue::processAll();
|
||||||
|
}
|
||||||
|
|
||||||
// Search for new contacts in the directory
|
// Search for new contacts in the directory
|
||||||
if (DI::config()->get('system', 'synchronize_directory')) {
|
if (DI::config()->get('system', 'synchronize_directory')) {
|
||||||
|
|
|
@ -166,7 +166,7 @@ return [
|
||||||
|
|
||||||
// decoupled_receiver (Boolean)
|
// decoupled_receiver (Boolean)
|
||||||
// Decouple incoming AP posts by doing the processing in the background.
|
// Decouple incoming AP posts by doing the processing in the background.
|
||||||
'decoupled_receiver' => true,
|
'decoupled_receiver' => false,
|
||||||
|
|
||||||
// distributed_cache_driver (database|memcache|memcached|redis)
|
// distributed_cache_driver (database|memcache|memcached|redis)
|
||||||
// Whether to use database, Memcache, Memcached or Redis as a distributed cache.
|
// Whether to use database, Memcache, Memcached or Redis as a distributed cache.
|
||||||
|
|
Loading…
Reference in a new issue