From 1c836685688dbaf169988fcb0d63ffba69b6136d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matej=20Ba=C4=8Do?= Date: Wed, 3 Jul 2024 07:02:41 +0000 Subject: [PATCH] PR review changes --- app/controllers/api/functions.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/controllers/api/functions.php b/app/controllers/api/functions.php index 637a53cc2c..7caf4f8cc5 100644 --- a/app/controllers/api/functions.php +++ b/app/controllers/api/functions.php @@ -2108,7 +2108,8 @@ App::delete('/v1/functions/:functionId/executions/:executionId') $queueForEvents ->setParam('functionId', $function->getId()) - ->setParam('executionId', $execution->getId()); + ->setParam('executionId', $execution->getId()) + ->setPayload($response->output($execution, Response::MODEL_EXECUTION)); $response->noContent(); });