]> git.mxchange.org Git - friendica.git/commitdiff
Decoupling is deactivated by default now
authorMichael <heluecht@pirati.ca>
Sun, 31 Jul 2022 07:48:35 +0000 (07:48 +0000)
committerMichael <heluecht@pirati.ca>
Sun, 31 Jul 2022 07:48:35 +0000 (07:48 +0000)
src/Worker/Cron.php
static/defaults.config.php

index 12ea6e60a36c8fffd9217301f74b0124b5d9f2db..2c724366dab13aa3ab175c370950ea9fca44849d 100644 (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')) {
index a8a23ea9e9e7abaac9c374a7216d10bd4ffac18b..01cd24f04b3a3c9ead7aa2d74f8c30bb9d0867a6 100644 (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.