1
0
Fork 0
mirror of synced 2024-10-02 10:16:27 +13:00

Merge pull request #6235 from appwrite/fix-6234-fix-function-timeout

Fix function timeout
This commit is contained in:
Christy Jacob 2023-09-14 13:53:37 -04:00 committed by GitHub
commit 6afeed8cf1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -846,10 +846,11 @@ return [
], ],
[ [
'name' => '_APP_FUNCTIONS_MAINTENANCE_INTERVAL', 'name' => '_APP_FUNCTIONS_MAINTENANCE_INTERVAL',
'description' => 'Interval how often executor checks for inactive runimes. The default value is 60 seconds.', '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.2.0', 'introduction' => '1.4.0',
'default' => '60', 'default' => '3600',
'required' => false, 'required' => false,
'overwrite' => true,
'question' => '', 'question' => '',
'filter' => '' 'filter' => ''
], ],