1
0
Fork 0
mirror of synced 2024-07-03 21:50:34 +12:00

Fix Executor

This commit is contained in:
Bradley Schofield 2022-01-31 13:38:06 +00:00
parent db6bf37e6a
commit 52c39d8784

View file

@ -653,7 +653,7 @@ function execute(string $trigger, string $projectId, string $executionId, string
return [
'status' => $functionStatus,
'response' => ($functionStatus !=== 'completed') ? $stderr : $stdout,
'response' => ($functionStatus !== 'completed') ? $stderr : $stdout,
'time' => $executionTime
];
};