Skip to content

Commit

Permalink
Az/fix remote files (#1392)
Browse files Browse the repository at this point in the history
* fixed task creation from remote files

* Update CHANGELOG.md
  • Loading branch information
azhavoro authored Apr 10, 2020
1 parent 90740a7 commit 73346b3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
-
Expand Down
1 change: 1 addition & 0 deletions cvat/apps/engine/serializers.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 73346b3

Please sign in to comment.