diff --git a/CHANGELOG.md b/CHANGELOG.md index 44de0ac2..905d6cba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -26,6 +26,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Permission error occured when accessing the JobCommits () - job assignee can remove or update any issue created by the task owner () - Bug: Incorrect point deletion with keyboard shortcut () +- some AI Tools were not sending responses properly () - Unable to upload annotations () ### Security diff --git a/cvat/apps/lambda_manager/views.py b/cvat/apps/lambda_manager/views.py index 43738c25..acd402a1 100644 --- a/cvat/apps/lambda_manager/views.py +++ b/cvat/apps/lambda_manager/views.py @@ -1,4 +1,4 @@ -# Copyright (C) 2021 Intel Corporation +# Copyright (C) 2022 Intel Corporation # # SPDX-License-Identifier: MIT @@ -281,8 +281,8 @@ class LambdaFunction: item["attributes"].append(attr) item['label'] = mapping[item['label']] response_filtered.append(item) - - return response_filtered + response = response_filtered + return response def _get_image(self, db_task, frame, quality): if quality is None or quality == "original":