Skip to content
This repository has been archived by the owner on May 15, 2020. It is now read-only.

Commit

Permalink
Merge pull request #77 from kpn/feature/aborted-final-status
Browse files Browse the repository at this point in the history
FIX: Mark aborted as a final status
  • Loading branch information
mjholtkamp committed Feb 6, 2020
2 parents d524138 + 4039ad4 commit aecaa59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion katka/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
(STEP_STATUS_SUCCESS, STEP_STATUS_SUCCESS),
)

STEP_FINAL_STATUSES = (STEP_STATUS_SKIPPED, STEP_STATUS_FAILED, STEP_STATUS_SUCCESS)
STEP_FINAL_STATUSES = (STEP_STATUS_SKIPPED, STEP_STATUS_FAILED, STEP_STATUS_SUCCESS, STEP_STATUS_ABORTED)
STEP_EXECUTED_STATUSES = (STEP_STATUS_FAILED, STEP_STATUS_SUCCESS)


Expand Down

0 comments on commit aecaa59

Please sign in to comment.