]> git.mxchange.org Git - friendica.git/commitdiff
With the new queue we don't need "delivery_batch_count" anymore
authorMichael Vogel <icarus@dabo.de>
Sun, 13 Sep 2015 06:08:13 +0000 (08:08 +0200)
committerMichael Vogel <icarus@dabo.de>
Sun, 13 Sep 2015 06:08:13 +0000 (08:08 +0200)
include/notifier.php

index 593933b3266c4e58b1cca8167ed7ca6af41ca5f1..d4d254f1c9a82a628aad02b43bef658a189b4c17 100644 (file)
@@ -638,7 +638,7 @@ function notifier_run(&$argv, &$argc){
 
                // This controls the number of deliveries to execute with each separate delivery process.
                // By default we'll perform one delivery per process. Assuming a hostile shared hosting
-               // provider, this provides the greatest chance of deliveries if processes start getting 
+               // provider, this provides the greatest chance of deliveries if processes start getting
                // killed. We can also space them out with the delivery_interval to also help avoid them
                // getting whacked.
 
@@ -646,8 +646,10 @@ function notifier_run(&$argv, &$argc){
                // together into a single process. This will reduce the overall number of processes
                // spawned for each delivery, but they will run longer.
 
+               // When using the workerqueue, we don't need this functionality.
+
                $deliveries_per_process = intval(get_config('system','delivery_batch_count'));
-               if($deliveries_per_process <= 0)
+               if (($deliveries_per_process <= 0) OR get_config("system", "worker"))
                        $deliveries_per_process = 1;
 
                $this_batch = array();