Skip to content

Commit

Permalink
Add missing PROCESSING status to DataStatus sort_order
Browse files Browse the repository at this point in the history
  • Loading branch information
gregorjerse committed Dec 11, 2024
1 parent c510864 commit b489c12
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions docs/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ Changed

Fixed
-----
- Add status ``DataStatus.PROCESSING`` to the sort order


===================
Expand Down
1 change: 1 addition & 0 deletions resolwe/flow/models/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ def sort_order(cls):
"""Return a priority for sorting data statuses in a collection."""
return [
cls.ERROR,
cls.PROCESSING,
cls.UPLOADING,
cls.PREPARING,
cls.WAITING,
Expand Down

0 comments on commit b489c12

Please sign in to comment.