Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cron.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/cron.php b/cron.php
index 64e87656fe4..626e9a777d6 100644
--- a/cron.php
+++ b/cron.php
@@ -111,8 +111,9 @@ try {
// Work
$jobList = \OC::$server->getJobList();
- // We only ask for jobs for 14 minutes, because after 15 minutes the next
- // system cron task should spawn.
+ // We only ask for jobs for 14 minutes, because after 5 minutes the next
+ // system cron task should spawn and we want to have at most three
+ // cron jobs running in parallel.
$endTime = time() + 14 * 60;
$executedJobs = [];