From 15f54c0dba23ca452fe4b2eb2cb1c4e60fba3d78 Mon Sep 17 00:00:00 2001 From: Steven Nguyen Date: Wed, 13 Sep 2023 16:23:14 -0700 Subject: [PATCH] Fix the _APP_FUNCTIONS_MAINTENANCE_INTERVAL variable * Clarify the description and make it match the other maintenance variables. * Fix the introduction since it was introduced in 1.4.0 and not 1.2.0. * Fix the default value because it was 1 hour in the previous versions and a number that is too low will conflict with a function's timeout. --- app/config/variables.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/app/config/variables.php b/app/config/variables.php index 8d31ee350b..4f8f370e79 100644 --- a/app/config/variables.php +++ b/app/config/variables.php @@ -846,10 +846,11 @@ return [ ], [ 'name' => '_APP_FUNCTIONS_MAINTENANCE_INTERVAL', - 'description' => 'Interval how often executor checks for inactive runimes. The default value is 60 seconds.', - 'introduction' => '1.2.0', - 'default' => '60', + 'description' => 'Interval value containing the number of seconds that the executor should wait before checking for inactive runtimes. The default value is 3600 seconds (1 hour).', + 'introduction' => '1.4.0', + 'default' => '3600', 'required' => false, + 'overwrite' => true, 'question' => '', 'filter' => '' ],