diff --git a/SAS/TMSS/backend/services/scheduling/lib/constraints/template_constraints_v1.py b/SAS/TMSS/backend/services/scheduling/lib/constraints/template_constraints_v1.py index 342b727554e0c3a5ca3212ab4008f8ecd116e752..baaca766e6e215f88f3e902510e69eea265532b5 100644 --- a/SAS/TMSS/backend/services/scheduling/lib/constraints/template_constraints_v1.py +++ b/SAS/TMSS/backend/services/scheduling/lib/constraints/template_constraints_v1.py @@ -62,7 +62,7 @@ def can_run_within_timewindow(scheduling_unit: models.SchedulingUnitBlueprint, l def can_run_after(scheduling_unit: models.SchedulingUnitBlueprint, lower_bound: datetime) -> bool: '''Check if the given scheduling_unit can run somewhere after the given lowerbound timestamp depending on the sub's constrains-template/doc.''' constraints = scheduling_unit.scheduling_constraints_doc - if 'before' in constraints['time']: + if 'time' in constraints and 'before' in constraints['time']: before = parser.parse(constraints['time']['before'], ignoretz=True) return before > lower_bound diff --git a/SAS/TMSS/backend/src/tmss/tmssapp/models/specification.py b/SAS/TMSS/backend/src/tmss/tmssapp/models/specification.py index 130cf7a6686b0a19a637e427054062ad06899fb9..4ebfde47aac6341522d1243faf8d727baa635227 100644 --- a/SAS/TMSS/backend/src/tmss/tmssapp/models/specification.py +++ b/SAS/TMSS/backend/src/tmss/tmssapp/models/specification.py @@ -517,7 +517,7 @@ class SchedulingUnitBlueprint(RefreshFromDbInvalidatesCachedPropertiesMixin, Tem if self.project.can_trigger: from lofar.sas.tmss.services.scheduling.constraints import can_run_after start_time = datetime.datetime.utcnow() + datetime.timedelta(minutes=3) - if self.draft.scheduling_constraints_template is None or can_run_after(self, start_time): # todo: use self.scheduling_constraints_template after TMSS-697 was merged + if self.scheduling_constraints_template is None or can_run_after(self, start_time): logger.info('Triggered obs name=%s can run after start_time=%s. The scheduler will pick this up and cancel ongoing observations if necessary.' % (self.name, start_time)) else: logger.info('Triggered obs name=%s cannot run after start_time=%s. Adding it for book-keeping, but it will be unschedulable.' % (self.name, start_time)) diff --git a/SAS/TMSS/backend/test/t_tmssapp_specification_django_API.py b/SAS/TMSS/backend/test/t_tmssapp_specification_django_API.py index ca34a170f939b580acaa43417836317fdb300a4d..3639b0fbe6efa756c15c156a925248310e62d834 100755 --- a/SAS/TMSS/backend/test/t_tmssapp_specification_django_API.py +++ b/SAS/TMSS/backend/test/t_tmssapp_specification_django_API.py @@ -854,7 +854,8 @@ class SchedulingUnitBlueprintTest(unittest.TestCase): # setup project = models.Project.objects.create(**Project_test_data(can_trigger=True)) scheduling_set = models.SchedulingSet.objects.create(**SchedulingSet_test_data(project=project)) - scheduling_unit_draft = models.SchedulingUnitDraft.objects.create(**SchedulingUnitDraft_test_data(scheduling_set=scheduling_set, is_triggered=True)) + constraints_template = models.SchedulingConstraintsTemplate.objects.get(name="constraints") + scheduling_unit_draft = models.SchedulingUnitDraft.objects.create(**SchedulingUnitDraft_test_data(scheduling_set=scheduling_set, is_triggered=True, scheduling_constraints_template=constraints_template)) scheduling_unit_blueprint = models.SchedulingUnitBlueprint.objects.create(**SchedulingUnitBlueprint_test_data(draft=scheduling_unit_draft)) # assert @@ -874,7 +875,6 @@ class SchedulingUnitBlueprintTest(unittest.TestCase): self.assertIn('does not allow triggering', str(context.exception)) - class TaskBlueprintTest(unittest.TestCase): @classmethod def setUpClass(cls) -> None: