From 048997dd4177f803e08ee27b6251ba8ec49f5500 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matej=20Ba=C4=8Do?= Date: Mon, 7 Mar 2022 13:03:51 +0000 Subject: [PATCH] Imcreased execution substring limit --- app/executor.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/executor.php b/app/executor.php index b82d17a117..1fa32599ab 100644 --- a/app/executor.php +++ b/app/executor.php @@ -500,8 +500,8 @@ App::post('/v1/execution') $execution = [ 'status' => $functionStatus, 'statusCode' => $statusCode, - 'stdout' => \utf8_encode(\mb_substr($stdout, -8000)), - 'stderr' => \utf8_encode(\mb_substr($stderr, -8000)), + 'stdout' => \utf8_encode(\mb_substr($stdout, -16384)), + 'stderr' => \utf8_encode(\mb_substr($stderr, -16384)), 'time' => $executionTime, ];