Skip to content
Snippets Groups Projects
Commit 70ee0354 authored by Jorrit Schaap's avatar Jorrit Schaap
Browse files

TMSS-780: block subtask scheduling when obsolete

parent ee2550d6
No related branches found
No related tags found
2 merge requests!634WIP: COBALT commissioning delta,!606Resolve TMSS-780
......@@ -1096,6 +1096,9 @@ def check_prerequities_for_scheduling(subtask: Subtask) -> bool:
if subtask.state.value != SubtaskState.Choices.DEFINED.value:
raise SubtaskSchedulingException("Cannot schedule subtask id=%d because it is not DEFINED. Current state=%s" % (subtask.pk, subtask.state.value))
if subtask.obsolete_since is not None:
raise SubtaskSchedulingException("Cannot schedule subtask id=%d because it is marked as obsolete since %s" % (subtask.pk, subtask.obsolete_since))
for predecessor in subtask.predecessors.all():
if predecessor.state.value != SubtaskState.Choices.FINISHED.value:
raise SubtaskSchedulingException("Cannot schedule subtask id=%d because its predecessor id=%s in not FINISHED but state=%s"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment