Merge pull request #1333 from appwrite/fix-updated-execution-model-description

Updated description on Execution Model
This commit is contained in:
Eldad A. Fux
2021-06-30 17:03:22 +03:00
committed by GitHub
@@ -48,13 +48,13 @@ class Execution extends Model
])
->addRule('stdout', [
'type' => self::TYPE_STRING,
'description' => 'The script stdout output string.',
'description' => 'The script stdout output string. Logs the last 4,000 characters of the execution stdout output.',
'default' => '',
'example' => '',
])
->addRule('stderr', [
'type' => self::TYPE_STRING,
'description' => 'The script stderr output string.',
'description' => 'The script stderr output string. Logs the last 4,000 characters of the execution stderr output',
'default' => '',
'example' => '',
])