From 631b38a16066288f955fb5522fc1fe00dc4d0c4e Mon Sep 17 00:00:00 2001 From: Pierre Goiffon Date: Fri, 25 Mar 2022 15:56:11 +0100 Subject: [PATCH] =?UTF-8?q?N=C2=B05003=20Change=20cron=5Fmax=5Fexecution?= =?UTF-8?q?=5Ftime=20config=20param=20help=20text?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- core/config.class.inc.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/core/config.class.inc.php b/core/config.class.inc.php index 2adc5023c..af1e05c36 100644 --- a/core/config.class.inc.php +++ b/core/config.class.inc.php @@ -476,11 +476,11 @@ class Config 'show_in_conf_sample' => true, ), 'cron_max_execution_time' => array( - 'type' => 'integer', - 'description' => 'Duration (seconds) of the page cron.php, must be shorter than php setting max_execution_time and shorter than the web server response timeout', - 'default' => 600, - 'value' => 600, - 'source_of_value' => '', + 'type' => 'integer', + 'description' => 'Duration (seconds) of the cron.php script : if exceeded the script will exit even if there are remaining tasks to process. Must be shorter than php max_execution_time setting (note than when using CLI, this is set to 0 by default which means unlimited). If cron.php is ran via web, it must be shorter than the web server response timeout.', + 'default' => 600, + 'value' => 600, + 'source_of_value' => '', 'show_in_conf_sample' => true, ), 'cron_sleep' => array(