diff options
author | blizzz <blizzz@arthur-schiwon.de> | 2020-02-19 10:37:50 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-19 10:37:50 +0100 |
commit | 29f610edfdf3804ca7c3e216483a7f0b6d0e541a (patch) | |
tree | 21c4951b90c3892bd9a18f7532b6dd2f54e83c52 | |
parent | eb28572f9b8ab6e3bf36b86513b619337d65eea8 (diff) | |
parent | ab6a18f420d8196ed7ab2199f7ca4ed52f9a80e5 (diff) | |
download | nextcloud-server-29f610edfdf3804ca7c3e216483a7f0b6d0e541a.tar.gz nextcloud-server-29f610edfdf3804ca7c3e216483a7f0b6d0e541a.zip |
Merge pull request #19506 from michaelkuhn/cron-5-min
cron: Adapt to 5 minutes recommendation
-rw-r--r-- | cron.php | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -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 = []; |