From 13d69b2b0d3cbd43e43635cfe759c5f8669ca415 Mon Sep 17 00:00:00 2001 From: Andrey Zhavoronkov Date: Fri, 10 Apr 2020 16:22:13 +0300 Subject: [PATCH 1/2] fixed task creation from remote files --- cvat/apps/engine/serializers.py | 1 + 1 file changed, 1 insertion(+) diff --git a/cvat/apps/engine/serializers.py b/cvat/apps/engine/serializers.py index da0cd5d768c..5c8cd9c052b 100644 --- a/cvat/apps/engine/serializers.py +++ b/cvat/apps/engine/serializers.py @@ -207,6 +207,7 @@ def create(self, validated_data): os.makedirs(db_data.get_compressed_cache_dirname()) os.makedirs(db_data.get_original_cache_dirname()) + os.makedirs(db_data.get_upload_dirname()) for f in client_files: client_file = models.ClientFile(data=db_data, **f) From 0f6c688abf7cee7109c3dbc1f1c848d4041d8032 Mon Sep 17 00:00:00 2001 From: Andrey Zhavoronkov <41117609+azhavoro@users.noreply.github.com> Date: Fri, 10 Apr 2020 16:36:00 +0300 Subject: [PATCH 2/2] Update CHANGELOG.md --- CHANGELOG.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 40b823f093d..9e99a221e65 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -33,7 +33,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Hidden points (or outsided) are visible after changing a frame - Merge is allowed for points, but clicks on points conflict with frame dragging logic - Removed objects are visible for search -- Add missed task_id and job_id fields into exception logs for the new UI (https://github.com/opencv/cvat/pull/1372) +- Add missed task_id and job_id fields into exception logs for the new UI (https://github.com/opencv/cvat/pull/1372) +- Task creation from remote files (https://github.com/opencv/cvat/pull/1392) ### Security -