From 54aec5997ebe105dfd8471e11c927ceae1810198 Mon Sep 17 00:00:00 2001 From: "Vincent (Wen Yu) Ge" Date: Fri, 17 Feb 2023 22:12:26 +0000 Subject: [PATCH] Fix size of function return value --- src/Appwrite/Utopia/Response/Model/Execution.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Appwrite/Utopia/Response/Model/Execution.php b/src/Appwrite/Utopia/Response/Model/Execution.php index 8672a91598..d1a335be47 100644 --- a/src/Appwrite/Utopia/Response/Model/Execution.php +++ b/src/Appwrite/Utopia/Response/Model/Execution.php @@ -62,19 +62,19 @@ class Execution extends Model ]) ->addRule('response', [ 'type' => self::TYPE_STRING, - 'description' => 'The script response output string. Logs the last 4,000 characters of the execution response output.', + 'description' => 'The script response output string. Logs the last 1MB of the execution response output.', 'default' => '', 'example' => '', ]) ->addRule('stdout', [ 'type' => self::TYPE_STRING, - 'description' => 'The script stdout output string. Logs the last 4,000 characters of the execution stdout output. This will return an empty string unless the response is returned using an API key or as part of a webhook payload.', + 'description' => 'The script stdout output string. Logs the last 1MB characters of the execution stdout output. This will return an empty string unless the response is returned using an API key or as part of a webhook payload.', 'default' => '', 'example' => '', ]) ->addRule('stderr', [ 'type' => self::TYPE_STRING, - 'description' => 'The script stderr output string. Logs the last 4,000 characters of the execution stderr output. This will return an empty string unless the response is returned using an API key or as part of a webhook payload.', + 'description' => 'The script stderr output string. Logs the last 1MB characters of the execution stderr output. This will return an empty string unless the response is returned using an API key or as part of a webhook payload.', 'default' => '', 'example' => '', ])