-
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
Auto-annotation support for jobs #6276
Conversation
cvat/apps/iam/permissions.py
Outdated
try: | ||
task = Task.objects.get(id=task) | ||
except Task.DoesNotExist as ex: | ||
raise ValidationError(str(ex)) |
Check warning
Code scanning / CodeQL
Information exposure through an exception
cvat/apps/iam/permissions.py
Outdated
try: | ||
task = Task.objects.get(id=task_id) | ||
except Task.DoesNotExist as ex: | ||
raise ValidationError(str(ex)) |
Check warning
Code scanning / CodeQL
Information exposure through an exception
cvat/apps/iam/permissions.py
Outdated
try: | ||
report = QualityReport.objects.get(id=report) | ||
except QualityReport.DoesNotExist as ex: | ||
raise ValidationError(str(ex)) |
Check warning
Code scanning / CodeQL
Information exposure through an exception
cvat/apps/quality_control/views.py
Outdated
serializer = RqIdSerializer({"rq_id": rq_id}) | ||
return Response(serializer.data, status=status.HTTP_202_ACCEPTED) | ||
except qc.QualityReportUpdateManager.QualityReportsNotAvailable as ex: | ||
raise ValidationError(str(ex)) |
Check warning
Code scanning / CodeQL
Information exposure through an exception
Codecov Report
@@ Coverage Diff @@
## develop #6276 +/- ##
============================================
- Coverage 78.09% 52.18% -25.92%
============================================
Files 320 145 -175
Lines 37783 16934 -20849
Branches 6957 3285 -3672
============================================
- Hits 29507 8837 -20670
- Misses 7963 8091 +128
+ Partials 313 6 -307
|
Motivation and context
Depends on #6204
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.