-
Notifications
You must be signed in to change notification settings - Fork 3.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Requests page #7537
Requests page #7537
Conversation
…nto kl/data-processing
field_name=StorageType.TARGET, | ||
) | ||
except ValueError as ex: | ||
raise serializers.ValidationError(str(ex)) from ex |
Check warning
Code scanning / CodeQL
Information exposure through an exception Medium
Stack trace information
… deferred job registry
ffbf718
to
4493302
Compare
- basicAuth: [] | ||
responses: | ||
'202': | ||
description: Exporting has been started |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This returns a request ID, right? Can you add a response schema?
created_date: | ||
type: string | ||
format: date-time | ||
readOnly: true | ||
enqueued_date: | ||
type: string | ||
format: date-time | ||
readOnly: true | ||
nullable: true |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is there a meaningful difference between created_date
and enqueued_date
, as far as the user is concerned? If a request was created, it must have also been enqueued.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Probably not for now, but I think it depends on whether we're going to inform the user about deferred jobs or continue to mask them as queued.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Then let's only expose one of these fields until such a time when there's a reason to expose the other one.
(FWIW, my vote is for created_date
, as that would be consistent with other API resources.)
4493302
to
aa9ec46
Compare
Quality Gate passedIssues Measures |
I will close this PR and re-open it. It became messy with lots of comments from AI tools and reviews. |
This PR introduces new page with information about data processing(status and progress). For now it will support: task creation, import/export. For previous discussions refer to: #7537 Co-authored-by: Maria Khrustaleva <maria@cvat.ai> Co-authored-by: Boris Sekachev <sekachev.bs@gmail.com>
Motivation and context
How has this been tested?
Checklist
develop
branch(cvat-canvas,
cvat-core,
cvat-data and
cvat-ui)
License
Feel free to contact the maintainers if that's a concern.
Summary by CodeRabbit
Release Notes
New Features
Bug Fixes
cy.goBack()
after export operations.Refactor
importing
andbackupIsActive
across multiple components.Tests
Documentation
Chores