Skip to content
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

Upload COCO JSON Annotation Error and Delete Project Error #768

Closed
ttppss opened this issue Oct 11, 2019 · 6 comments · Fixed by #788
Closed

Upload COCO JSON Annotation Error and Delete Project Error #768

ttppss opened this issue Oct 11, 2019 · 6 comments · Fixed by #788
Labels
bug Something isn't working
Milestone

Comments

@ttppss
Copy link

ttppss commented Oct 11, 2019

When I exported the annotation in COCO format, save to local, removed the segmentations from the JSON, then upload it to the original project, it shows an error without any content.
Please see part of the COCO JSON I uploaded below:

{ "licenses": [ { "name": "", "id": 0, "url": "" } ], "info": { "contributor": "", "date_created": "2019-10-11", "description": "demo1011001", "url": "", "version": 3, "year": "2019" }, "categories": [ { "id": 1, "name": "\u5176\u5b83", "supercategory": "" }, { "id": 2, "name": "\u708e\u6027\u606f\u8089", "supercategory": "" }, { "id": 3, "name": "\u817a\u7624\u6027\u606f\u8089", "supercategory": "" }, { "id": 4, "name": "\u817a\u764c", "supercategory": "" }, { "id": 5, "name": "\u9519\u6784\u7624\u6027\u606f\u8089", "supercategory": "" } ], "images": [ { "coco_url": "", "date_captured": "", "flickr_url": "", "license": 0, "id": 13, "file_name": "1671.jpg", "height": 719, "width": 838 }, { "coco_url": "", "date_captured": "", "flickr_url": "", "license": 0, "id": 14, "file_name": "184.jpg", "height": 719, "width": 838 } ], "annotations": [ { "category_id": 3, "id": 0, "image_id": 13, "iscrowd": 0, "segmentation": [ [] ], "area": 16942.0, "bbox": [ 558.0, 514.0, 223.0, 110.0 ] }, { "category_id": 1, "id": 1, "image_id": 14, "iscrowd": 0, "segmentation": [ [] ], "area": 24530.0, "bbox": [ 146.0, 146.0, 197.0, 86.0 ] } ] }

This issue looks similar to #699 , but the output error is different.

The only thing I modified from the dumped annotation is the segmentation part, I also switched the bbox for test purpose. The name of categories looks wield is because I'm using non Latin charactors. I'm not sure if this is the issue or not.

And when I check the log with "docker logs cvat", the following are what propmt:

> 2019-10-11 21:19:29,972 DEBG 'runserver' stderr output: [Fri Oct 11 21:19:29.971651 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] [2019-10-11 21:19:29,970] ERROR django.request: Internal Server Error: /api/v1/jobs/8/annotations [Fri Oct 11 21:19:29.971690 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] Traceback (most recent call last): [Fri Oct 11 21:19:29.971696 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] File "/usr/local/lib/python3.5/dist-packages/django/core/handlers/exception.py", line 34, in inner [Fri Oct 11 21:19:29.971701 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] response = get_response(request) [Fri Oct 11 21:19:29.971706 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] File "/usr/local/lib/python3.5/dist-packages/django/core/handlers/base.py", line 115, in _get_response [Fri Oct 11 21:19:29.971711 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] response = self.process_exception_by_middleware(e, request) [Fri Oct 11 21:19:29.971716 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] File "/usr/local/lib/python3.5/dist-packages/django/core/handlers/base.py", line 113, in _get_response [Fri Oct 11 21:19:29.971720 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] response = wrapped_callback(request, *callback_args, **callback_kwargs) [Fri Oct 11 21:19:29.971725 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] File "/usr/local/lib/python3.5/dist-packages/django/views/decorators/csrf.py", line 54, in wrapped_view [Fri Oct 11 21:19:29.971729 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] return view_func(*args, **kwargs) [Fri Oct 11 21:19:29.971733 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] File "/usr/local/lib/python3.5/dist-packages/rest_framework/viewsets.py", line 116, in view [Fri Oct 11 21:19:29.971738 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] return self.dispatch(request, *args, **kwargs) [Fri Oct 11 21:19:29.971742 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] File "/usr/local/lib/python3.5/dist-packages/rest_framework/views.py", line 495, in dispatch [Fri Oct 11 21:19:29.971746 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] response = self.handle_exception(exc) [Fri Oct 11 21:19:29.971750 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] File "/usr/local/lib/python3.5/dist-packages/rest_framework/views.py", line 455, in handle_exception [Fri Oct 11 21:19:29.971754 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] self.raise_uncaught_exception(exc) [Fri Oct 11 21:19:29.971758 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] File "/usr/local/lib/python3.5/dist-packages/rest_framework/views.py", line 492, in dispatch [Fri Oct 11 21:19:29.971762 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] response = handler(request, *args, **kwargs) [Fri Oct 11 21:19:29.971778 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] File "/home/django/cvat/apps/engine/views.py", line 410, in annotations [Fri Oct 11 21:19:29.971784 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] data = annotation.get_job_data(pk, request.user) [Fri Oct 11 21:19:29.971788 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] File "/home/django/cvat/apps/profiler.py", line 11, in wrapped [Fri Oct 11 21:19:29.971792 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] return f(*args, **kwargs) [Fri Oct 11 21:19:29.971796 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] File "/usr/lib/python3.5/contextlib.py", line 30, in inner [Fri Oct 11 21:19:29.971800 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] return func(*args, **kwds) [Fri Oct 11 21:19:29.971806 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] File "/home/django/cvat/apps/engine/annotation.py", line 48, in get_job_data [Fri Oct 11 21:19:29.971811 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] annotation.init_from_db() [Fri Oct 11 21:19:29.971815 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] File "/home/django/cvat/apps/engine/annotation.py", line 626, in init_from_db [Fri Oct 11 21:19:29.971819 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] self._init_shapes_from_db() [Fri Oct 11 21:19:29.971822 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] File "/home/django/cvat/apps/engine/annotation.py", line 533, in _init_shapes_from_db [Fri Oct 11 21:19:29.971827 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] field_id='id', [Fri Oct 11 21:19:29.971831 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] File "/home/django/cvat/apps/engine/annotation.py", line 160, in _merge_table_rows [Fri Oct 11 21:19:29.971835 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] for row in rows: [Fri Oct 11 21:19:29.971839 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] File "/usr/local/lib/python3.5/dist-packages/django/db/models/query.py", line 274, in __iter__ [Fri Oct 11 21:19:29.971843 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] self._fetch_all()

2019-10-11 21:19:29,972 DEBG 'runserver' stderr output:

[Fri Oct 11 21:19:29.971846 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] File "/usr/local/lib/python3.5/dist-packages/cacheops/query.py", line 273, in _fetch_all
[Fri Oct 11 21:19:29.971880 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] return self._no_monkey._fetch_all(self)
[Fri Oct 11 21:19:29.971884 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] File "/usr/local/lib/python3.5/dist-packages/django/db/models/query.py", line 1242, in _fetch_all
[Fri Oct 11 21:19:29.971888 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] self._result_cache = list(self._iterable_class(self))
[Fri Oct 11 21:19:29.971892 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] File "/usr/local/lib/python3.5/dist-packages/django/db/models/query.py", line 113, in iter
[Fri Oct 11 21:19:29.971896 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] for row in compiler.results_iter(chunked_fetch=self.chunked_fetch, chunk_size=self.chunk_size):
[Fri Oct 11 21:19:29.971900 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] File "/usr/local/lib/python3.5/dist-packages/django/db/models/sql/compiler.py", line 1044, in apply_converters
[Fri Oct 11 21:19:29.971904 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] value = converter(value, expression, connection)
[Fri Oct 11 21:19:29.971908 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] File "/home/django/cvat/apps/engine/models.py", line 266, in from_db_value
[Fri Oct 11 21:19:29.971912 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] return [float(v) for v in value.split(self.separator)]
[Fri Oct 11 21:19:29.971916 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] File "/home/django/cvat/apps/engine/models.py", line 266, in
[Fri Oct 11 21:19:29.971920 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] return [float(v) for v in value.split(self.separator)]
[Fri Oct 11 21:19:29.971928 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] ValueError: could not convert string to float:
[Fri Oct 11 21:19:29.971940 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294]

Then I try to save the project, it shows an error as following:
image
And here is the log:

2019-10-11 20:43:16,466 DEBG 'runserver' stderr output:
[Fri Oct 11 20:43:16.465986 2019] [wsgi:error] [pid 312:tid 139786663511808] [remote 10.116.13.190:55857] [2019-10-11 20:43:16,465] WARNING django.request: Not Found: /favicon.ico

2019-10-11 20:45:59,408 DEBG 'runserver' stderr output:
[Fri Oct 11 20:45:59.408160 2019] [wsgi:error] [pid 312:tid 139786663511808] [remote 172.16.32.121:46936] [2019-10-11 20:45:59,407] WARNING django.request: Not Found: /favicon.ico

2019-10-11 21:12:07,479 DEBG 'runserver' stderr output:
[Fri Oct 11 21:12:07.479069 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47120] [2019-10-11 21:12:07,474] ERROR django.request: Internal Server Error: /api/v1/jobs/7/annotations
[Fri Oct 11 21:12:07.479098 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47120] Traceback (most recent call last):
[Fri Oct 11 21:12:07.479103 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47120] File "/usr/local/lib/python3.5/dist-packages/django/core/handlers/exception.py", line 34, in inner
[Fri Oct 11 21:12:07.479108 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47120] response = get_response(request)
[Fri Oct 11 21:12:07.479112 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47120] File "/usr/local/lib/python3.5/dist-packages/django/core/handlers/base.py", line 115, in _get_response
[Fri Oct 11 21:12:07.479116 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47120] response = self.process_exception_by_middleware(e, request)
[Fri Oct 11 21:12:07.479120 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47120] File "/usr/local/lib/python3.5/dist-packages/django/core/handlers/base.py", line 113, in _get_response
[Fri Oct 11 21:12:07.479124 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47120] response = wrapped_callback(request, *callback_args, **callback_kwargs)
[Fri Oct 11 21:12:07.479127 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47120] File "/usr/local/lib/python3.5/dist-packages/django/views/decorators/csrf.py", line 54, in wrapped_view
[Fri Oct 11 21:12:07.479131 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47120] return view_func(*args, **kwargs)
[Fri Oct 11 21:12:07.479134 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47120] File "/usr/local/lib/python3.5/dist-packages/rest_framework/viewsets.py", line 116, in view
[Fri Oct 11 21:12:07.479137 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47120] return self.dispatch(request, *args, **kwargs)
[Fri Oct 11 21:12:07.479141 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47120] File "/usr/local/lib/python3.5/dist-packages/rest_framework/views.py", line 495, in dispatch
[Fri Oct 11 21:12:07.479144 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47120] response = self.handle_exception(exc)
[Fri Oct 11 21:12:07.479148 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47120] File "/usr/local/lib/python3.5/dist-packages/rest_framework/views.py", line 455, in handle_exception
[Fri Oct 11 21:12:07.479152 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47120] self.raise_uncaught_exception(exc)
[Fri Oct 11 21:12:07.479155 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47120] File "/usr/local/lib/python3.5/dist-packages/rest_framework/views.py", line 492, in dispatch
[Fri Oct 11 21:12:07.479159 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47120] response = handler(request, *args, **kwargs)
[Fri Oct 11 21:12:07.479162 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47120] File "/home/django/cvat/apps/engine/views.py", line 410, in annotations
[Fri Oct 11 21:12:07.479165 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47120] data = annotation.get_job_data(pk, request.user)
[Fri Oct 11 21:12:07.479168 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47120] File "/home/django/cvat/apps/profiler.py", line 11, in wrapped
[Fri Oct 11 21:12:07.479171 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47120] return f(*args, **kwargs)
[Fri Oct 11 21:12:07.479175 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47120] File "/usr/lib/python3.5/contextlib.py", line 30, in inner
[Fri Oct 11 21:12:07.479178 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47120] return func(*args, **kwds)
[Fri Oct 11 21:12:07.479183 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47120] File "/home/django/cvat/apps/engine/annotation.py", line 48, in get_job_data
[Fri Oct 11 21:12:07.479186 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47120] annotation.init_from_db()
[Fri Oct 11 21:12:07.479189 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47120] File "/home/django/cvat/apps/engine/annotation.py", line 626, in init_from_db
[Fri Oct 11 21:12:07.479192 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47120] self._init_shapes_from_db()
[Fri Oct 11 21:12:07.479195 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47120] File "/home/django/cvat/apps/engine/annotation.py", line 533, in _init_shapes_from_db
[Fri Oct 11 21:12:07.479199 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47120] field_id='id',
[Fri Oct 11 21:12:07.479202 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47120] File "/home/django/cvat/apps/engine/annotation.py", line 160, in _merge_table_rows
[Fri Oct 11 21:12:07.479205 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47120] for row in rows:
[Fri Oct 11 21:12:07.479208 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47120] File "/usr/local/lib/python3.5/dist-packages/django/db/models/query.py", line 274, in iter
[Fri Oct 11 21:12:07.479211 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47120] self._fetch_all()
[Fri Oct 11 21:12:07.479214 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47120] File "/usr/local/lib/python3.5/dist-packages/cacheops/query.py", line 273, in _fetch_all
[Fri Oct 11 21:12:07.479218 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47120] return self._no_monkey._fetch_all(self)
[Fri Oct 11 21:12:07.479221 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47120] File "/usr/local/lib/python3.5/dist-packages/django/db/models/query.py", line 1242, in _fetch_all
[Fri Oct 11 21:12:07.479224 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47120] self._result_cache = list(self._iterable_class(self))
[Fri Oct 11 21:12:07.479227 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47120] File "/usr/local/lib/python3.5/dist-packages/django/db/models/query.py", line 113, in iter
[Fri Oct 11 21:12:07.479230 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47120] for row in compiler.results_iter(chunked_fetch=self.chunked_fetch, chunk_size=self.chunk_size):
[Fri Oct 11 21:12:07.479234 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47120] File "/usr/local/lib/python3.5/dist-packages/django/db/models/sql/compiler.py", line 1044, in apply_converters
[Fri Oct 11 21:12:07.479237 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47120] value = converter(value, expression, connection)
[Fri Oct 11 21:12:07.479240 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47120] File "/home/django/cvat/apps/engine/models.py", line 266, in from_db_value
[Fri Oct 11 21:12:07.479243 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47120] return [float(v) for v in value.split(self.separator)]
[Fri Oct 11 21:12:07.479246 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47120] File "/home/django/cvat/apps/engine/models.py", line 266, in
[Fri Oct 11 21:12:07.479250 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47120] return [float(v) for v in value.split(self.separator)]
[Fri Oct 11 21:12:07.479255 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47120] ValueError: could not convert string to float:
[Fri Oct 11 21:12:07.479265 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47120]

2019-10-11 21:12:23,021 DEBG 'runserver' stderr output:
[Fri Oct 11 21:12:23.021042 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47132] [2019-10-11 21:12:23,018] ERROR django.request: Internal Server Error: /api/v1/tasks/8
[Fri Oct 11 21:12:23.021080 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47132] Traceback (most recent call last):
[Fri Oct 11 21:12:23.021087 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47132] File "/usr/local/lib/python3.5/dist-packages/django/core/handlers/exception.py", line 34, in inner
[Fri Oct 11 21:12:23.021091 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47132] response = get_response(request)
[Fri Oct 11 21:12:23.021095 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47132] File "/usr/local/lib/python3.5/dist-packages/django/core/handlers/base.py", line 115, in _get_response
[Fri Oct 11 21:12:23.021100 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47132] response = self.process_exception_by_middleware(e, request)
[Fri Oct 11 21:12:23.021104 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47132] File "/usr/local/lib/python3.5/dist-packages/django/core/handlers/base.py", line 113, in _get_response
[Fri Oct 11 21:12:23.021108 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47132] response = wrapped_callback(request, *callback_args, **callback_kwargs)
[Fri Oct 11 21:12:23.021111 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47132] File "/usr/local/lib/python3.5/dist-packages/django/views/decorators/csrf.py", line 54, in wrapped_view
[Fri Oct 11 21:12:23.021115 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47132] return view_func(*args, **kwargs)
[Fri Oct 11 21:12:23.021119 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47132] File "/usr/local/lib/python3.5/dist-packages/rest_framework/viewsets.py", line 116, in view
[Fri Oct 11 21:12:23.021122 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47132] return self.dispatch(request, *args, **kwargs)
[Fri Oct 11 21:12:23.021126 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47132] File "/usr/local/lib/python3.5/dist-packages/rest_framework/views.py", line 495, in dispatch
[Fri Oct 11 21:12:23.021130 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47132] response = self.handle_exception(exc)
[Fri Oct 11 21:12:23.021133 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47132] File "/usr/local/lib/python3.5/dist-packages/rest_framework/views.py", line 455, in handle_exception
[Fri Oct 11 21:12:23.021137 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47132] self.raise_uncaught_exception(exc)
[Fri Oct 11 21:12:23.021140 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47132] File "/usr/local/lib/python3.5/dist-packages/rest_framework/views.py", line 492, in dispatch
[Fri Oct 11 21:12:23.021144 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47132] response = handler(request, *args, **kwargs)
[Fri Oct 11 21:12:23.021147 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47132] File "/usr/local/lib/python3.5/dist-packages/rest_framework/mixins.py", line 93, in destroy
[Fri Oct 11 21:12:23.021151 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47132] self.perform_destroy(instance)
[Fri Oct 11 21:12:23.021154 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47132] File "/home/django/cvat/apps/engine/views.py", line 207, in perform_destroy
[Fri Oct 11 21:12:23.021158 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47132] super().perform_destroy(instance)
[Fri Oct 11 21:12:23.021161 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47132] File "/usr/local/lib/python3.5/dist-packages/rest_framework/mixins.py", line 97, in perform_destroy
[Fri Oct 11 21:12:23.021166 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47132] instance.delete()
[Fri Oct 11 21:12:23.021170 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47132] File "/usr/local/lib/python3.5/dist-packages/django/db/models/base.py", line 918, in delete
[Fri Oct 11 21:12:23.021174 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47132] collector.collect([self], keep_parents=keep_parents)
[Fri Oct 11 21:12:23.021177 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47132] File "/usr/local/lib/python3.5/dist-packages/django/db/models/deletion.py", line 224, in collect

2019-10-11 21:12:23,021 DEBG 'runserver' stderr output:
[Fri Oct 11 21:12:23.021181 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47132] field.remote_field.on_delete(self, field, sub_objs, self.using)
[Fri Oct 11 21:12:23.021187 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47132] File "/usr/local/lib/python3.5/dist-packages/django/db/models/deletion.py", line 16, in CASCADE
[Fri Oct 11 21:12:23.021190 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47132] source_attr=field.name, nullable=field.null)
[Fri Oct 11 21:12:23.021194 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47132] File "/usr/local/lib/python3.5/dist-packages/django/db/models/deletion.py", line 224, in collect
[Fri Oct 11 21:12:23.021198 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47132] field.remote_field.on_delete(self, field, sub_objs, self.using)
[Fri Oct 11 21:12:23.021201 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47132] File "/usr/local/lib/python3.5/dist-packages/django/db/models/deletion.py", line 16, in CASCADE
[Fri Oct 11 21:12:23.021205 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47132] source_attr=field.name, nullable=field.null)
[Fri Oct 11 21:12:23.021208 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47132] File "/usr/local/lib/python3.5/dist-packages/django/db/models/deletion.py", line 223, in collect
[Fri Oct 11 21:12:23.021212 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47132] elif sub_objs:
[Fri Oct 11 21:12:23.021215 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47132] File "/usr/local/lib/python3.5/dist-packages/django/db/models/query.py", line 278, in bool
[Fri Oct 11 21:12:23.021219 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47132] self._fetch_all()
[Fri Oct 11 21:12:23.021222 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47132] File "/usr/local/lib/python3.5/dist-packages/cacheops/query.py", line 273, in _fetch_all
[Fri Oct 11 21:12:23.021226 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47132] return self._no_monkey._fetch_all(self)
[Fri Oct 11 21:12:23.021229 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47132] File "/usr/local/lib/python3.5/dist-packages/django/db/models/query.py", line 1242, in _fetch_all
[Fri Oct 11 21:12:23.021233 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47132] self._result_cache = list(self._iterable_class(self))
[Fri Oct 11 21:12:23.021236 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47132] File "/usr/local/lib/python3.5/dist-packages/django/db/models/query.py", line 72, in iter
[Fri Oct 11 21:12:23.021240 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47132] for row in compiler.results_iter(results):
[Fri Oct 11 21:12:23.021243 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47132] File "/usr/local/lib/python3.5/dist-packages/django/db/models/sql/compiler.py", line 1044, in apply_converters
[Fri Oct 11 21:12:23.021247 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47132] value = converter(value, expression, connection)
[Fri Oct 11 21:12:23.021250 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47132] File "/home/django/cvat/apps/engine/models.py", line 266, in from_db_value
[Fri Oct 11 21:12:23.021254 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47132] return [float(v) for v in value.split(self.separator)]
[Fri Oct 11 21:12:23.021258 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47132] File "/home/django/cvat/apps/engine/models.py", line 266, in
[Fri Oct 11 21:12:23.021261 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47132] return [float(v) for v in value.split(self.separator)]
[Fri Oct 11 21:12:23.021267 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47132] ValueError: could not convert string to float:
[Fri Oct 11 21:12:23.021278 2019] [wsgi:error] [pid 312:tid 139786638333696] [remote 172.16.32.121:47132]

2019-10-11 21:15:13,144 DEBG 'runserver' stderr output:
[Fri Oct 11 21:15:13.144242 2019] [wsgi:error] [pid 312:tid 139786663511808] [remote 172.16.32.121:47160] [2019-10-11 21:15:13,143] ERROR django.request: Internal Server Error: /api/v1/tasks/8
[Fri Oct 11 21:15:13.144280 2019] [wsgi:error] [pid 312:tid 139786663511808] [remote 172.16.32.121:47160] Traceback (most recent call last):
[Fri Oct 11 21:15:13.144287 2019] [wsgi:error] [pid 312:tid 139786663511808] [remote 172.16.32.121:47160] File "/usr/local/lib/python3.5/dist-packages/django/core/handlers/exception.py", line 34, in inner
[Fri Oct 11 21:15:13.144292 2019] [wsgi:error] [pid 312:tid 139786663511808] [remote 172.16.32.121:47160] response = get_response(request)
[Fri Oct 11 21:15:13.144297 2019] [wsgi:error] [pid 312:tid 139786663511808] [remote 172.16.32.121:47160] File "/usr/local/lib/python3.5/dist-packages/django/core/handlers/base.py", line 115, in _get_response
[Fri Oct 11 21:15:13.144302 2019] [wsgi:error] [pid 312:tid 139786663511808] [remote 172.16.32.121:47160] response = self.process_exception_by_middleware(e, request)
[Fri Oct 11 21:15:13.144306 2019] [wsgi:error] [pid 312:tid 139786663511808] [remote 172.16.32.121:47160] File "/usr/local/lib/python3.5/dist-packages/django/core/handlers/base.py", line 113, in _get_response
[Fri Oct 11 21:15:13.144311 2019] [wsgi:error] [pid 312:tid 139786663511808] [remote 172.16.32.121:47160] response = wrapped_callback(request, *callback_args, **callback_kwargs)
[Fri Oct 11 21:15:13.144315 2019] [wsgi:error] [pid 312:tid 139786663511808] [remote 172.16.32.121:47160] File "/usr/local/lib/python3.5/dist-packages/django/views/decorators/csrf.py", line 54, in wrapped_view
[Fri Oct 11 21:15:13.144320 2019] [wsgi:error] [pid 312:tid 139786663511808] [remote 172.16.32.121:47160] return view_func(*args, **kwargs)
[Fri Oct 11 21:15:13.144324 2019] [wsgi:error] [pid 312:tid 139786663511808] [remote 172.16.32.121:47160] File "/usr/local/lib/python3.5/dist-packages/rest_framework/viewsets.py", line 116, in view
[Fri Oct 11 21:15:13.144328 2019] [wsgi:error] [pid 312:tid 139786663511808] [remote 172.16.32.121:47160] return self.dispatch(request, *args, **kwargs)
[Fri Oct 11 21:15:13.144332 2019] [wsgi:error] [pid 312:tid 139786663511808] [remote 172.16.32.121:47160] File "/usr/local/lib/python3.5/dist-packages/rest_framework/views.py", line 495, in dispatch
[Fri Oct 11 21:15:13.144336 2019] [wsgi:error] [pid 312:tid 139786663511808] [remote 172.16.32.121:47160] response = self.handle_exception(exc)
[Fri Oct 11 21:15:13.144340 2019] [wsgi:error] [pid 312:tid 139786663511808] [remote 172.16.32.121:47160] File "/usr/local/lib/python3.5/dist-packages/rest_framework/views.py", line 455, in handle_exception
[Fri Oct 11 21:15:13.144345 2019] [wsgi:error] [pid 312:tid 139786663511808] [remote 172.16.32.121:47160] self.raise_uncaught_exception(exc)
[Fri Oct 11 21:15:13.144349 2019] [wsgi:error] [pid 312:tid 139786663511808] [remote 172.16.32.121:47160] File "/usr/local/lib/python3.5/dist-packages/rest_framework/views.py", line 492, in dispatch
[Fri Oct 11 21:15:13.144353 2019] [wsgi:error] [pid 312:tid 139786663511808] [remote 172.16.32.121:47160] response = handler(request, *args, **kwargs)
[Fri Oct 11 21:15:13.144357 2019] [wsgi:error] [pid 312:tid 139786663511808] [remote 172.16.32.121:47160] File "/usr/local/lib/python3.5/dist-packages/rest_framework/mixins.py", line 93, in destroy
[Fri Oct 11 21:15:13.144361 2019] [wsgi:error] [pid 312:tid 139786663511808] [remote 172.16.32.121:47160] self.perform_destroy(instance)
[Fri Oct 11 21:15:13.144365 2019] [wsgi:error] [pid 312:tid 139786663511808] [remote 172.16.32.121:47160] File "/home/django/cvat/apps/engine/views.py", line 207, in perform_destroy

2019-10-11 21:15:13,144 DEBG 'runserver' stderr output:
[Fri Oct 11 21:15:13.144369 2019] [wsgi:error] [pid 312:tid 139786663511808] [remote 172.16.32.121:47160] super().perform_destroy(instance)
[Fri Oct 11 21:15:13.144377 2019] [wsgi:error] [pid 312:tid 139786663511808] [remote 172.16.32.121:47160] File "/usr/local/lib/python3.5/dist-packages/rest_framework/mixins.py", line 97, in perform_destroy
[Fri Oct 11 21:15:13.144381 2019] [wsgi:error] [pid 312:tid 139786663511808] [remote 172.16.32.121:47160] instance.delete()
[Fri Oct 11 21:15:13.144385 2019] [wsgi:error] [pid 312:tid 139786663511808] [remote 172.16.32.121:47160] File "/usr/local/lib/python3.5/dist-packages/django/db/models/base.py", line 918, in delete
[Fri Oct 11 21:15:13.144389 2019] [wsgi:error] [pid 312:tid 139786663511808] [remote 172.16.32.121:47160] collector.collect([self], keep_parents=keep_parents)
[Fri Oct 11 21:15:13.144393 2019] [wsgi:error] [pid 312:tid 139786663511808] [remote 172.16.32.121:47160] File "/usr/local/lib/python3.5/dist-packages/django/db/models/deletion.py", line 224, in collect
[Fri Oct 11 21:15:13.144398 2019] [wsgi:error] [pid 312:tid 139786663511808] [remote 172.16.32.121:47160] field.remote_field.on_delete(self, field, sub_objs, self.using)
[Fri Oct 11 21:15:13.144402 2019] [wsgi:error] [pid 312:tid 139786663511808] [remote 172.16.32.121:47160] File "/usr/local/lib/python3.5/dist-packages/django/db/models/deletion.py", line 16, in CASCADE
[Fri Oct 11 21:15:13.144406 2019] [wsgi:error] [pid 312:tid 139786663511808] [remote 172.16.32.121:47160] source_attr=field.name, nullable=field.null)
[Fri Oct 11 21:15:13.144410 2019] [wsgi:error] [pid 312:tid 139786663511808] [remote 172.16.32.121:47160] File "/usr/local/lib/python3.5/dist-packages/django/db/models/deletion.py", line 224, in collect
[Fri Oct 11 21:15:13.144414 2019] [wsgi:error] [pid 312:tid 139786663511808] [remote 172.16.32.121:47160] field.remote_field.on_delete(self, field, sub_objs, self.using)
[Fri Oct 11 21:15:13.144418 2019] [wsgi:error] [pid 312:tid 139786663511808] [remote 172.16.32.121:47160] File "/usr/local/lib/python3.5/dist-packages/django/db/models/deletion.py", line 16, in CASCADE
[Fri Oct 11 21:15:13.144423 2019] [wsgi:error] [pid 312:tid 139786663511808] [remote 172.16.32.121:47160] source_attr=field.name, nullable=field.null)
[Fri Oct 11 21:15:13.144427 2019] [wsgi:error] [pid 312:tid 139786663511808] [remote 172.16.32.121:47160] File "/usr/local/lib/python3.5/dist-packages/django/db/models/deletion.py", line 223, in collect
[Fri Oct 11 21:15:13.144431 2019] [wsgi:error] [pid 312:tid 139786663511808] [remote 172.16.32.121:47160] elif sub_objs:
[Fri Oct 11 21:15:13.144435 2019] [wsgi:error] [pid 312:tid 139786663511808] [remote 172.16.32.121:47160] File "/usr/local/lib/python3.5/dist-packages/django/db/models/query.py", line 278, in bool
[Fri Oct 11 21:15:13.144439 2019] [wsgi:error] [pid 312:tid 139786663511808] [remote 172.16.32.121:47160] self._fetch_all()
[Fri Oct 11 21:15:13.144443 2019] [wsgi:error] [pid 312:tid 139786663511808] [remote 172.16.32.121:47160] File "/usr/local/lib/python3.5/dist-packages/cacheops/query.py", line 273, in _fetch_all
[Fri Oct 11 21:15:13.144447 2019] [wsgi:error] [pid 312:tid 139786663511808] [remote 172.16.32.121:47160] return self._no_monkey._fetch_all(self)
[Fri Oct 11 21:15:13.144451 2019] [wsgi:error] [pid 312:tid 139786663511808] [remote 172.16.32.121:47160] File "/usr/local/lib/python3.5/dist-packages/django/db/models/query.py", line 1242, in _fetch_all
[Fri Oct 11 21:15:13.144455 2019] [wsgi:error] [pid 312:tid 139786663511808] [remote 172.16.32.121:47160] self._result_cache = list(self._iterable_class(self))
[Fri Oct 11 21:15:13.144459 2019] [wsgi:error] [pid 312:tid 139786663511808] [remote 172.16.32.121:47160] File "/usr/local/lib/python3.5/dist-packages/django/db/models/query.py", line 72, in iter
[Fri Oct 11 21:15:13.144464 2019] [wsgi:error] [pid 312:tid 139786663511808] [remote 172.16.32.121:47160] for row in compiler.results_iter(results):
[Fri Oct 11 21:15:13.144468 2019] [wsgi:error] [pid 312:tid 139786663511808] [remote 172.16.32.121:47160] File "/usr/local/lib/python3.5/dist-packages/django/db/models/sql/compiler.py", line 1044, in apply_converters
[Fri Oct 11 21:15:13.144474 2019] [wsgi:error] [pid 312:tid 139786663511808] [remote 172.16.32.121:47160] value = converter(value, expression, connection)
[Fri Oct 11 21:15:13.144478 2019] [wsgi:error] [pid 312:tid 139786663511808] [remote 172.16.32.121:47160] File "/home/django/cvat/apps/engine/models.py", line 266, in from_db_value
[Fri Oct 11 21:15:13.144482 2019] [wsgi:error] [pid 312:tid 139786663511808] [remote 172.16.32.121:47160] return [float(v) for v in value.split(self.separator)]
[Fri Oct 11 21:15:13.144486 2019] [wsgi:error] [pid 312:tid 139786663511808] [remote 172.16.32.121:47160] File "/home/django/cvat/apps/engine/models.py", line 266, in
[Fri Oct 11 21:15:13.144490 2019] [wsgi:error] [pid 312:tid 139786663511808] [remote 172.16.32.121:47160] return [float(v) for v in value.split(self.separator)]
[Fri Oct 11 21:15:13.144498 2019] [wsgi:error] [pid 312:tid 139786663511808] [remote 172.16.32.121:47160] ValueError: could not convert string to float:
[Fri Oct 11 21:15:13.144509 2019] [wsgi:error] [pid 312:tid 139786663511808] [remote 172.16.32.121:47160]

2019-10-11 21:17:06,703 DEBG 'rqworker_default_0' stderr output:
21:17:06 default: cvat.apps.engine.task._create_thread(9, {'server_files': ['1174.jpg', '1175.jpg', '1177.jpg', '1178.jpg', '1179.jpg', '1181.jpg', '1337.jpg', '1339.jpg', '1480.jpg', '1477.jpg', '1474.jpg', '167.jpg', '1667.jpg', '1671.jpg', '1844.jpg', '184.jpg'], 'client_files': [], 'remote_files': []}) (/api/v1/tasks/9)

2019-10-11 21:17:06,719 DEBG 'rqworker_default_0' stderr output:
[2019-10-11 21:17:06,719] INFO cvat.server: create task #9

2019-10-11 21:17:08,172 DEBG 'rqworker_default_0' stderr output:
[2019-10-11 21:17:08,172] INFO cvat.server: Founded frames 16 for task #9

2019-10-11 21:17:08,173 DEBG 'rqworker_default_0' stderr output:
[2019-10-11 21:17:08,173] INFO cvat.server: New segment for task #9: start_frame = 0, stop_frame = 15

2019-10-11 21:17:08,194 DEBG 'rqworker_default_0' stderr output:
21:17:08 default: Job OK (/api/v1/tasks/9)

2019-10-11 21:17:08,196 DEBG 'rqworker_default_0' stderr output:
21:17:08 Result is kept for 500 seconds

2019-10-11 21:17:08,203 DEBG 'rqworker_default_0' stderr output:
21:17:08 Cleaning registries for queue: default

2019-10-11 21:17:45,035 DEBG 'rqworker_default_1' stderr output:
21:17:45 default: cvat.apps.engine.annotation.dump_task_data('9', <SimpleLazyObject: <User: lab412>>, '/home/django/data/9/9_demo1011001.lab412.2019_10_11_21_17_45.json', <AnnotationDumper: AnnotationDumper object (COCO JSON 1.0)>, 'http', '129.63.16.60') (lab412@/api/v1/tasks/9/annotations/9_demo1011001)

2019-10-11 21:17:46,190 DEBG 'rqworker_default_1' stderr output:
21:17:46 default: Job OK (lab412@/api/v1/tasks/9/annotations/9_demo1011001)

2019-10-11 21:17:46,191 DEBG 'rqworker_default_1' stderr output:
21:17:46 Result is kept for 500 seconds

2019-10-11 21:18:34,613 DEBG 'runserver' stderr output:
[Fri Oct 11 21:18:34.612605 2019] [reqtimeout:info] [pid 313:tid 139786785101568] [client 172.16.32.121:47284] AH01382: Request header read timeout

2019-10-11 21:19:26,682 DEBG 'rqworker_default_0' stderr output:
21:19:26 default: cvat.apps.engine.annotation.load_job_data('8', <SimpleLazyObject: <User: lab412>>, '/tmp/cvat_87i5plf87', <AnnotationLoader: AnnotationLoader object (COCO JSON 1.0)>) (lab412@/api/v1/jobs/8/annotations/upload)

2019-10-11 21:19:27,289 DEBG 'rqworker_default_0' stderr output:
21:19:27 default: Job OK (lab412@/api/v1/jobs/8/annotations/upload)

2019-10-11 21:19:27,290 DEBG 'rqworker_default_0' stderr output:
21:19:27 Result is kept for 500 seconds

2019-10-11 21:19:29,972 DEBG 'runserver' stderr output:
[Fri Oct 11 21:19:29.971651 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] [2019-10-11 21:19:29,970] ERROR django.request: Internal Server Error: /api/v1/jobs/8/annotations
[Fri Oct 11 21:19:29.971690 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] Traceback (most recent call last):
[Fri Oct 11 21:19:29.971696 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] File "/usr/local/lib/python3.5/dist-packages/django/core/handlers/exception.py", line 34, in inner
[Fri Oct 11 21:19:29.971701 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] response = get_response(request)
[Fri Oct 11 21:19:29.971706 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] File "/usr/local/lib/python3.5/dist-packages/django/core/handlers/base.py", line 115, in _get_response
[Fri Oct 11 21:19:29.971711 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] response = self.process_exception_by_middleware(e, request)
[Fri Oct 11 21:19:29.971716 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] File "/usr/local/lib/python3.5/dist-packages/django/core/handlers/base.py", line 113, in _get_response
[Fri Oct 11 21:19:29.971720 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] response = wrapped_callback(request, *callback_args, **callback_kwargs)
[Fri Oct 11 21:19:29.971725 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] File "/usr/local/lib/python3.5/dist-packages/django/views/decorators/csrf.py", line 54, in wrapped_view
[Fri Oct 11 21:19:29.971729 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] return view_func(*args, **kwargs)
[Fri Oct 11 21:19:29.971733 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] File "/usr/local/lib/python3.5/dist-packages/rest_framework/viewsets.py", line 116, in view
[Fri Oct 11 21:19:29.971738 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] return self.dispatch(request, *args, **kwargs)
[Fri Oct 11 21:19:29.971742 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] File "/usr/local/lib/python3.5/dist-packages/rest_framework/views.py", line 495, in dispatch
[Fri Oct 11 21:19:29.971746 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] response = self.handle_exception(exc)
[Fri Oct 11 21:19:29.971750 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] File "/usr/local/lib/python3.5/dist-packages/rest_framework/views.py", line 455, in handle_exception
[Fri Oct 11 21:19:29.971754 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] self.raise_uncaught_exception(exc)
[Fri Oct 11 21:19:29.971758 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] File "/usr/local/lib/python3.5/dist-packages/rest_framework/views.py", line 492, in dispatch
[Fri Oct 11 21:19:29.971762 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] response = handler(request, *args, **kwargs)
[Fri Oct 11 21:19:29.971778 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] File "/home/django/cvat/apps/engine/views.py", line 410, in annotations
[Fri Oct 11 21:19:29.971784 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] data = annotation.get_job_data(pk, request.user)
[Fri Oct 11 21:19:29.971788 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] File "/home/django/cvat/apps/profiler.py", line 11, in wrapped
[Fri Oct 11 21:19:29.971792 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] return f(*args, **kwargs)
[Fri Oct 11 21:19:29.971796 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] File "/usr/lib/python3.5/contextlib.py", line 30, in inner
[Fri Oct 11 21:19:29.971800 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] return func(*args, **kwds)
[Fri Oct 11 21:19:29.971806 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] File "/home/django/cvat/apps/engine/annotation.py", line 48, in get_job_data
[Fri Oct 11 21:19:29.971811 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] annotation.init_from_db()
[Fri Oct 11 21:19:29.971815 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] File "/home/django/cvat/apps/engine/annotation.py", line 626, in init_from_db
[Fri Oct 11 21:19:29.971819 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] self._init_shapes_from_db()
[Fri Oct 11 21:19:29.971822 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] File "/home/django/cvat/apps/engine/annotation.py", line 533, in _init_shapes_from_db
[Fri Oct 11 21:19:29.971827 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] field_id='id',
[Fri Oct 11 21:19:29.971831 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] File "/home/django/cvat/apps/engine/annotation.py", line 160, in _merge_table_rows
[Fri Oct 11 21:19:29.971835 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] for row in rows:
[Fri Oct 11 21:19:29.971839 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] File "/usr/local/lib/python3.5/dist-packages/django/db/models/query.py", line 274, in iter
[Fri Oct 11 21:19:29.971843 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] self._fetch_all()

2019-10-11 21:19:29,972 DEBG 'runserver' stderr output:
[Fri Oct 11 21:19:29.971846 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] File "/usr/local/lib/python3.5/dist-packages/cacheops/query.py", line 273, in _fetch_all
[Fri Oct 11 21:19:29.971880 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] return self._no_monkey._fetch_all(self)
[Fri Oct 11 21:19:29.971884 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] File "/usr/local/lib/python3.5/dist-packages/django/db/models/query.py", line 1242, in _fetch_all
[Fri Oct 11 21:19:29.971888 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] self._result_cache = list(self._iterable_class(self))
[Fri Oct 11 21:19:29.971892 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] File "/usr/local/lib/python3.5/dist-packages/django/db/models/query.py", line 113, in iter
[Fri Oct 11 21:19:29.971896 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] for row in compiler.results_iter(chunked_fetch=self.chunked_fetch, chunk_size=self.chunk_size):
[Fri Oct 11 21:19:29.971900 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] File "/usr/local/lib/python3.5/dist-packages/django/db/models/sql/compiler.py", line 1044, in apply_converters
[Fri Oct 11 21:19:29.971904 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] value = converter(value, expression, connection)
[Fri Oct 11 21:19:29.971908 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] File "/home/django/cvat/apps/engine/models.py", line 266, in from_db_value
[Fri Oct 11 21:19:29.971912 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] return [float(v) for v in value.split(self.separator)]
[Fri Oct 11 21:19:29.971916 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] File "/home/django/cvat/apps/engine/models.py", line 266, in
[Fri Oct 11 21:19:29.971920 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] return [float(v) for v in value.split(self.separator)]
[Fri Oct 11 21:19:29.971928 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294] ValueError: could not convert string to float:
[Fri Oct 11 21:19:29.971940 2019] [wsgi:error] [pid 312:tid 139786655119104] [remote 172.16.32.121:47294]

2019-10-11 21:20:53,647 DEBG 'runserver' stderr output:
[Fri Oct 11 21:20:53.646999 2019] [wsgi:error] [pid 312:tid 139786629940992] [remote 172.16.32.121:47306] [2019-10-11 21:20:53,645] ERROR django.request: Internal Server Error: /api/v1/jobs/8/annotations
[Fri Oct 11 21:20:53.647064 2019] [wsgi:error] [pid 312:tid 139786629940992] [remote 172.16.32.121:47306] Traceback (most recent call last):
[Fri Oct 11 21:20:53.647073 2019] [wsgi:error] [pid 312:tid 139786629940992] [remote 172.16.32.121:47306] File "/usr/local/lib/python3.5/dist-packages/django/core/handlers/exception.py", line 34, in inner
[Fri Oct 11 21:20:53.647080 2019] [wsgi:error] [pid 312:tid 139786629940992] [remote 172.16.32.121:47306] response = get_response(request)
[Fri Oct 11 21:20:53.647087 2019] [wsgi:error] [pid 312:tid 139786629940992] [remote 172.16.32.121:47306] File "/usr/local/lib/python3.5/dist-packages/django/core/handlers/base.py", line 115, in _get_response
[Fri Oct 11 21:20:53.647094 2019] [wsgi:error] [pid 312:tid 139786629940992] [remote 172.16.32.121:47306] response = self.process_exception_by_middleware(e, request)
[Fri Oct 11 21:20:53.647115 2019] [wsgi:error] [pid 312:tid 139786629940992] [remote 172.16.32.121:47306] File "/usr/local/lib/python3.5/dist-packages/django/core/handlers/base.py", line 113, in _get_response
[Fri Oct 11 21:20:53.647121 2019] [wsgi:error] [pid 312:tid 139786629940992] [remote 172.16.32.121:47306] response = wrapped_callback(request, *callback_args, **callback_kwargs)
[Fri Oct 11 21:20:53.647127 2019] [wsgi:error] [pid 312:tid 139786629940992] [remote 172.16.32.121:47306] File "/usr/local/lib/python3.5/dist-packages/django/views/decorators/csrf.py", line 54, in wrapped_view
[Fri Oct 11 21:20:53.647132 2019] [wsgi:error] [pid 312:tid 139786629940992] [remote 172.16.32.121:47306] return view_func(*args, **kwargs)
[Fri Oct 11 21:20:53.647137 2019] [wsgi:error] [pid 312:tid 139786629940992] [remote 172.16.32.121:47306] File "/usr/local/lib/python3.5/dist-packages/rest_framework/viewsets.py", line 116, in view
[Fri Oct 11 21:20:53.647142 2019] [wsgi:error] [pid 312:tid 139786629940992] [remote 172.16.32.121:47306] return self.dispatch(request, *args, **kwargs)
[Fri Oct 11 21:20:53.647147 2019] [wsgi:error] [pid 312:tid 139786629940992] [remote 172.16.32.121:47306] File "/usr/local/lib/python3.5/dist-packages/rest_framework/views.py", line 495, in dispatch
[Fri Oct 11 21:20:53.647152 2019] [wsgi:error] [pid 312:tid 139786629940992] [remote 172.16.32.121:47306] response = self.handle_exception(exc)
[Fri Oct 11 21:20:53.647157 2019] [wsgi:error] [pid 312:tid 139786629940992] [remote 172.16.32.121:47306] File "/usr/local/lib/python3.5/dist-packages/rest_framework/views.py", line 455, in handle_exception
[Fri Oct 11 21:20:53.647162 2019] [wsgi:error] [pid 312:tid 139786629940992] [remote 172.16.32.121:47306] self.raise_uncaught_exception(exc)
[Fri Oct 11 21:20:53.647167 2019] [wsgi:error] [pid 312:tid 139786629940992] [remote 172.16.32.121:47306] File "/usr/local/lib/python3.5/dist-packages/rest_framework/views.py", line 492, in dispatch
[Fri Oct 11 21:20:53.647172 2019] [wsgi:error] [pid 312:tid 139786629940992] [remote 172.16.32.121:47306] response = handler(request, *args, **kwargs)
[Fri Oct 11 21:20:53.647177 2019] [wsgi:error] [pid 312:tid 139786629940992] [remote 172.16.32.121:47306] File "/home/django/cvat/apps/engine/views.py", line 424, in annotations
[Fri Oct 11 21:20:53.647182 2019] [wsgi:error] [pid 312:tid 139786629940992] [remote 172.16.32.121:47306] data = annotation.put_job_data(pk, request.user, serializer.data)
[Fri Oct 11 21:20:53.647187 2019] [wsgi:error] [pid 312:tid 139786629940992] [remote 172.16.32.121:47306] File "/home/django/cvat/apps/profiler.py", line 11, in wrapped
[Fri Oct 11 21:20:53.647192 2019] [wsgi:error] [pid 312:tid 139786629940992] [remote 172.16.32.121:47306] return f(*args, **kwargs)
[Fri Oct 11 21:20:53.647197 2019] [wsgi:error] [pid 312:tid 139786629940992] [remote 172.16.32.121:47306] File "/usr/lib/python3.5/contextlib.py", line 30, in inner
[Fri Oct 11 21:20:53.647202 2019] [wsgi:error] [pid 312:tid 139786629940992] [remote 172.16.32.121:47306] return func(*args, **kwds)
[Fri Oct 11 21:20:53.647211 2019] [wsgi:error] [pid 312:tid 139786629940992] [remote 172.16.32.121:47306] File "/home/django/cvat/apps/engine/annotation.py", line 56, in put_job_data
[Fri Oct 11 21:20:53.647216 2019] [wsgi:error] [pid 312:tid 139786629940992] [remote 172.16.32.121:47306] annotation.put(data)

2019-10-11 21:20:53,648 DEBG 'runserver' stderr output:
[Fri Oct 11 21:20:53.647221 2019] [wsgi:error] [pid 312:tid 139786629940992] [remote 172.16.32.121:47306] File "/home/django/cvat/apps/engine/annotation.py", line 419, in put
[Fri Oct 11 21:20:53.647226 2019] [wsgi:error] [pid 312:tid 139786629940992] [remote 172.16.32.121:47306] self._delete()
[Fri Oct 11 21:20:53.647231 2019] [wsgi:error] [pid 312:tid 139786629940992] [remote 172.16.32.121:47306] File "/home/django/cvat/apps/engine/annotation.py", line 432, in _delete
[Fri Oct 11 21:20:53.647236 2019] [wsgi:error] [pid 312:tid 139786629940992] [remote 172.16.32.121:47306] deleted_shapes += self.db_job.labeledshape_set.all().delete()[0]
[Fri Oct 11 21:20:53.647241 2019] [wsgi:error] [pid 312:tid 139786629940992] [remote 172.16.32.121:47306] File "/usr/local/lib/python3.5/dist-packages/django/db/models/query.py", line 710, in delete
[Fri Oct 11 21:20:53.647246 2019] [wsgi:error] [pid 312:tid 139786629940992] [remote 172.16.32.121:47306] collector.collect(del_query)
[Fri Oct 11 21:20:53.647251 2019] [wsgi:error] [pid 312:tid 139786629940992] [remote 172.16.32.121:47306] File "/usr/local/lib/python3.5/dist-packages/django/db/models/deletion.py", line 192, in collect
[Fri Oct 11 21:20:53.647256 2019] [wsgi:error] [pid 312:tid 139786629940992] [remote 172.16.32.121:47306] reverse_dependency=reverse_dependency)
[Fri Oct 11 21:20:53.647261 2019] [wsgi:error] [pid 312:tid 139786629940992] [remote 172.16.32.121:47306] File "/usr/local/lib/python3.5/dist-packages/django/db/models/deletion.py", line 88, in add
[Fri Oct 11 21:20:53.647266 2019] [wsgi:error] [pid 312:tid 139786629940992] [remote 172.16.32.121:47306] if not objs:
[Fri Oct 11 21:20:53.647271 2019] [wsgi:error] [pid 312:tid 139786629940992] [remote 172.16.32.121:47306] File "/usr/local/lib/python3.5/dist-packages/django/db/models/query.py", line 278, in bool
[Fri Oct 11 21:20:53.647276 2019] [wsgi:error] [pid 312:tid 139786629940992] [remote 172.16.32.121:47306] self._fetch_all()
[Fri Oct 11 21:20:53.647281 2019] [wsgi:error] [pid 312:tid 139786629940992] [remote 172.16.32.121:47306] File "/usr/local/lib/python3.5/dist-packages/cacheops/query.py", line 273, in _fetch_all
[Fri Oct 11 21:20:53.647286 2019] [wsgi:error] [pid 312:tid 139786629940992] [remote 172.16.32.121:47306] return self._no_monkey._fetch_all(self)
[Fri Oct 11 21:20:53.647291 2019] [wsgi:error] [pid 312:tid 139786629940992] [remote 172.16.32.121:47306] File "/usr/local/lib/python3.5/dist-packages/django/db/models/query.py", line 1242, in _fetch_all
[Fri Oct 11 21:20:53.647296 2019] [wsgi:error] [pid 312:tid 139786629940992] [remote 172.16.32.121:47306] self._result_cache = list(self._iterable_class(self))
[Fri Oct 11 21:20:53.647301 2019] [wsgi:error] [pid 312:tid 139786629940992] [remote 172.16.32.121:47306] File "/usr/local/lib/python3.5/dist-packages/django/db/models/query.py", line 72, in iter
[Fri Oct 11 21:20:53.647306 2019] [wsgi:error] [pid 312:tid 139786629940992] [remote 172.16.32.121:47306] for row in compiler.results_iter(results):
[Fri Oct 11 21:20:53.647311 2019] [wsgi:error] [pid 312:tid 139786629940992] [remote 172.16.32.121:47306] File "/usr/local/lib/python3.5/dist-packages/django/db/models/sql/compiler.py", line 1044, in apply_converters
[Fri Oct 11 21:20:53.647317 2019] [wsgi:error] [pid 312:tid 139786629940992] [remote 172.16.32.121:47306] value = converter(value, expression, connection)
[Fri Oct 11 21:20:53.647321 2019] [wsgi:error] [pid 312:tid 139786629940992] [remote 172.16.32.121:47306] File "/home/django/cvat/apps/engine/models.py", line 266, in from_db_value
[Fri Oct 11 21:20:53.647326 2019] [wsgi:error] [pid 312:tid 139786629940992] [remote 172.16.32.121:47306] return [float(v) for v in value.split(self.separator)]
[Fri Oct 11 21:20:53.647331 2019] [wsgi:error] [pid 312:tid 139786629940992] [remote 172.16.32.121:47306] File "/home/django/cvat/apps/engine/models.py", line 266, in
[Fri Oct 11 21:20:53.647336 2019] [wsgi:error] [pid 312:tid 139786629940992] [remote 172.16.32.121:47306] return [float(v) for v in value.split(self.separator)]
[Fri Oct 11 21:20:53.647347 2019] [wsgi:error] [pid 312:tid 139786629940992] [remote 172.16.32.121:47306] ValueError: could not convert string to float:
[Fri Oct 11 21:20:53.647362 2019] [wsgi:error] [pid 312:tid 139786629940992] [remote 172.16.32.121:47306]

And then when I try to delete this project, is shows following error:
image

Please let me know how to fix this issue.

Thanks.

@nmanovic nmanovic added the bug Something isn't working label Oct 14, 2019
@nmanovic nmanovic added this to the 1.0.0 - Alpha milestone Oct 14, 2019
@nmanovic
Copy link
Contributor

Hi @ttppss , thank you very much for the report. It is an unknown issue. Let's investigate it together and fix.

I have the following questions:

  • Could you please send us exact steps how to reproduce "500" error when you try to delete your task. How to create a task (labels and other parameters)? Please attach a file which you uploaded, etc... Just need simple steps to reproduce the same problem.
  • I see that you try to use only bbox from COCO format. It is unexpected way for us to use COCO format. Please give us more details why you use the format in such way? Is it to train a specific CNN?
  • What is the proper way to implement COCO format support in CVAT from your point of view?

@ttppss
Copy link
Author

ttppss commented Oct 15, 2019

Hi @nmanovic , here are the steps I took to get this error.

  1. I uploaded one picture from server, and created an annotation with shape "box". Then I saved the work, and dumped the annotation to my local drive.

  2. I opened the dumped json file, and removed all values inside the "segmentation" within "annotation", and saved this file.

  3. I uploaded the modified annotation to the same project, and then it gave an error, without any message, only a "ok" button.

  4. Then I try to save the work, however, it does not allow me to save it, and gave the 500 error message like following:
    image

  5. Then I click the go back button from browser, and went back the the dashboard, and click "delete task", then it shows me the following error message:
    image

The modifed coco file is attached for your convenience, I changed the format to txt so I can upload it here.
14_realdemo000000.txt

For the second question, we already generated some annotations with our own algorithm in COCO format, since we are not using any masks or polygon, we have only bbox, and no segmentation is needed for this project.

For the last one, the only thing I can think of now, is to remove the constraint on segmentation,
so when we don't need it, we can leave it blank.

Thank you.

@ttppss
Copy link
Author

ttppss commented Nov 5, 2019

Hi @nmanovic

I pulled the changes, but I still cannot delete the existing projects, it still shows the same error: Could not delete the task from the server. Request failed with status code 500. "

Server Error (500)

". Code: 500.

May I know how I can delete it completely?

Thank you.

@azhavoro
Copy link
Contributor

azhavoro commented Nov 6, 2019

Hi @ttppss Could you please attach output from docker logs cvat command when you tried to delete the task?

@ttppss
Copy link
Author

ttppss commented Nov 6, 2019

Hi @azhavoro , I'm not sure why, when I try to delete the project, it does not generate new log, so I can only copy the logs from yesterday, I think it contains the delete operation.

Please take a look, and let me know if you need additional information.

cvat_error_log.txt

@azhavoro
Copy link
Contributor

azhavoro commented Nov 11, 2019

[Wed Nov 06 14:31:33.510186 2019] [wsgi:error] [pid 305:tid 139729849624320] [remote 172.16.32.121:47706]
File "/home/django/cvat/apps/engine/models.py", line 266, in
[Wed Nov 06 14:31:33.510189 2019] [wsgi:error] [pid 305:tid 139729849624320] [remote 172.16.32.121:47706] return [float(v) for v in value.split(self.separator)]

@ttppss Could you please make sure that docker images was build with the latest develop branch? For your instance the error occurs in line 266 of models.py (looks like it was built from one of prevous commit without #788 patch https://github.com/opencv/cvat/blob/5733423b13b7d23ac4ce444fab3ecc8af429f95b/cvat/apps/engine/models.py).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants