Merge pull request #4991 from appwrite/fix-function-timeout-example

Function default timeout example fix
This commit is contained in:
Christy Jacob 2023-01-12 13:53:25 +05:30 committed by GitHub
commit a35cf0b4c0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -97,7 +97,7 @@ class Func extends Model
'type' => self::TYPE_INTEGER,
'description' => 'Function execution timeout in seconds.',
'default' => 15,
'example' => 1592981237,
'example' => 15,
])
;
}